Use 20 Mhz bandwidth channel for AP (#648)
This is to reduce odd stuff seen during nightly optimization of unifi
This commit is contained in:
parent
7d65fb46a0
commit
76ef86e3eb
|
@ -37,7 +37,7 @@ framework = arduino
|
||||||
lib_deps =
|
lib_deps =
|
||||||
AsyncTCP = https://github.com/pbolduc/AsyncTCP.git@^1.2.0
|
AsyncTCP = https://github.com/pbolduc/AsyncTCP.git@^1.2.0
|
||||||
https://github.com/ESPresense/ESPAsyncWebServer.git
|
https://github.com/ESPresense/ESPAsyncWebServer.git
|
||||||
https://github.com/ESPresense/AsyncWiFiSettings.git#1.0.5
|
https://github.com/ESPresense/AsyncWiFiSettings.git#1.0.6
|
||||||
https://github.com/ESPresense/SoftFilters.git
|
https://github.com/ESPresense/SoftFilters.git
|
||||||
https://github.com/ESPresense/NimBLE-Arduino.git
|
https://github.com/ESPresense/NimBLE-Arduino.git
|
||||||
marvinroger/AsyncMqttClient@^0.9.0
|
marvinroger/AsyncMqttClient@^0.9.0
|
||||||
|
|
|
@ -215,6 +215,7 @@ void setupNetwork() {
|
||||||
#ifdef VERSION
|
#ifdef VERSION
|
||||||
Serial.println("Version: " + String(VERSION));
|
Serial.println("Version: " + String(VERSION));
|
||||||
#endif
|
#endif
|
||||||
|
Serial.printf("WiFi BSSID: %s (channel=%d rssi=%d)\n", WiFi.BSSIDstr().c_str(), WiFi.channel(), WiFi.RSSI());
|
||||||
Serial.print("IP address: ");
|
Serial.print("IP address: ");
|
||||||
Serial.println(Network.localIP());
|
Serial.println(Network.localIP());
|
||||||
Serial.print("DNS address: ");
|
Serial.print("DNS address: ");
|
||||||
|
|
Loading…
Reference in New Issue