Skip to content

Commit

Permalink
Update WiFiManager.h
Browse files Browse the repository at this point in the history
Change byte to uint8_t to cope with breaking change in 3.2.0 of platform:  esp8266/Arduino#8090
  • Loading branch information
dperish committed Sep 21, 2021
1 parent f1779c9 commit 86925b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions WiFiManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -426,8 +426,8 @@ class WiFiManager
IPAddress _sta_static_dns;

// defaults
const byte DNS_PORT = 53;
const byte HTTP_PORT = 80;
uint8_t DNS_PORT = 53;
const uint8_t HTTP_PORT = 80;
String _apName = "no-net";
String _apPassword = "";
String _ssid = ""; // var temp ssid
Expand Down

0 comments on commit 86925b7

Please sign in to comment.