File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ void setup() {
2020 WiFi.begin (ssid, password);
2121
2222 // Disable WiFi power save (huge latency improvements)
23- esp_wifi_set_ps (WIFI_PS_NONE)
23+ esp_wifi_set_ps (WIFI_PS_NONE);
2424
2525 // Wait for connection
2626 while (WiFi.status () != WL_CONNECTED) {
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ void setup() {
1717 WiFi.begin (ssid, password);
1818
1919 // Disable WiFi power save (huge latency improvements)
20- esp_wifi_set_ps (WIFI_PS_NONE)
20+ esp_wifi_set_ps (WIFI_PS_NONE);
2121
2222 while (WiFi.status () != WL_CONNECTED) {
2323 delay (500 );
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ void setup() {
2121 WiFi.begin (ssid, password);
2222
2323 // Disable WiFi power save (huge latency improvements)
24- esp_wifi_set_ps (WIFI_PS_NONE)
24+ esp_wifi_set_ps (WIFI_PS_NONE);
2525
2626 while (WiFi.status () != WL_CONNECTED) {
2727 M5.Lcd .fillScreen (ORANGE);
You can’t perform that action at this time.
0 commit comments