We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6289c6c commit 83af460Copy full SHA for 83af460
examples/Wemos/Wemos.ino
@@ -77,8 +77,8 @@ void setup() {
77
void loop() {
78
float vdd = ESP.getVcc() / 500.0;
79
while (WiFi.status() != WL_CONNECTED) {
80
- delay(500);
81
- Serial.print(".");
+ Serial.println("Waiting for WiFi...");
+ delay(1000);
82
}
83
84
// Measure data
@@ -127,7 +127,6 @@ void loop() {
127
128
client.stop();
129
130
- delay(1000);
131
132
// Turn off sensor and go to sleep
133
sensor.turnOff();
@@ -136,7 +135,6 @@ void loop() {
136
135
(previous_millis + (minutes_time_interval * 60 * 1000))) {
137
delay(10000);
138
current_millis = millis();
139
- Serial.println(current_millis);
140
141
previous_millis = current_millis;
142
sensor.turnOn();
0 commit comments