File tree 1 file changed +5
-5
lines changed 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ void setup()
38
38
void loop ()
39
39
{
40
40
webServer.handleClient ();
41
- delay (10 );
41
+ delay (25 );
42
42
}
43
43
44
44
void handleRoot ()
@@ -108,7 +108,7 @@ void setupWiFi()
108
108
WiFi.begin (WIFI_SSID, WIFI_PASS);
109
109
while (WiFi.status () != WL_CONNECTED)
110
110
{
111
- delay (200 );
111
+ delay (250 );
112
112
Serial.print (" ." );
113
113
}
114
114
Serial.println ();
@@ -142,7 +142,7 @@ void setupSensorTSL2561()
142
142
143
143
while (!tsl2561.begin ())
144
144
{
145
- delay (200 );
145
+ delay (50 );
146
146
Serial.print (" ." );
147
147
}
148
148
Serial.println ();
@@ -157,7 +157,7 @@ void setupSensorBME280()
157
157
158
158
while (!bme280.begin (I2C_ADDR_BME280))
159
159
{
160
- delay (200 );
160
+ delay (50 );
161
161
Serial.print (" ." );
162
162
}
163
163
Serial.println ();
@@ -172,7 +172,7 @@ void setupSensorHTU21DF()
172
172
173
173
while (!htu21df.begin ())
174
174
{
175
- delay (200 );
175
+ delay (50 );
176
176
Serial.print (" ." );
177
177
}
178
178
Serial.println ();
You can’t perform that action at this time.
0 commit comments