Skip to content

Commit 2c764d4

Browse files
fixed examples
1 parent a1d5d48 commit 2c764d4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/Example_AnalogRead/Example_AnalogRead.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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) {

examples/Example_ESP32/Example_ESP32.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

examples/Example_M5StickC/Example_M5StickC.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)