There was an error while loading. Please reload this page.
1 parent dafac43 commit 176087aCopy full SHA for 176087a
README.md
@@ -57,12 +57,15 @@ A robust and feature-complete Arduino library for Maxim Temperature Integrated C
57
}
58
59
void loop(void) {
60
- sensors.requestTemperatures();
61
- float tempC = sensors.getTempCByIndex(0);
62
- Serial.print("Temperature: ");
63
- Serial.print(tempC);
64
- Serial.println("°C");
65
- delay(1000);
+ sensors.requestTemperatures();
+
+ delay(750);
+ float tempC = sensors.getTempCByIndex(0);
+ Serial.print("Temperature: ");
66
+ Serial.print(tempC);
67
+ Serial.println("°C");
68
+ delay(1000);
69
70
```
71
0 commit comments