
LabView Temp on Excel
ขั้นตอนที่ 1 นำ code โหลดลงบอร์ด Arduino
// test_DS1820
#include
float celsius, fahrenheit;
OneWire ds(10); // on pin 10
void setup(void) {
Serial.begin(9600);
}
void loop(void) {
celsius = ReadTempDS1820();
if (celsius!=99999.9)
{
fahrenheit = celsius...