Skip to content

Commit 86925b7

Browse files
authored
Update WiFiManager.h
Change byte to uint8_t to cope with breaking change in 3.2.0 of platform: esp8266/Arduino#8090
1 parent f1779c9 commit 86925b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

WiFiManager.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -426,8 +426,8 @@ class WiFiManager
426426
IPAddress _sta_static_dns;
427427

428428
// defaults
429-
const byte DNS_PORT = 53;
430-
const byte HTTP_PORT = 80;
429+
uint8_t DNS_PORT = 53;
430+
const uint8_t HTTP_PORT = 80;
431431
String _apName = "no-net";
432432
String _apPassword = "";
433433
String _ssid = ""; // var temp ssid

0 commit comments

Comments
 (0)