LoopOnTech
LoopOnTech
Take a look at reducing the transmit power after WiFi has started. The transmit power mappings can be found [here](https://github.com/espressif/arduino-esp32/blob/23d715af1b185fac21558c907af4ff5b86526aa4/libraries/WiFi/src/WiFiGeneric.h#L111). ``` WiFi.softAP("espsoftap", "12345678"); WiFi.setTxPower(WIFI_POWER_15dBm); int txPower = WiFi.getTxPower(); Serial.print("TX power:...
Take a look at reducing the transmit power after WiFi has started. The transmit power mappings can be found [here](https://github.com/espressif/arduino-esp32/blob/23d715af1b185fac21558c907af4ff5b86526aa4/libraries/WiFi/src/WiFiGeneric.h#L111). ``` WiFi.softAP("espsoftap", "12345678"); WiFi.setTxPower(WIFI_POWER_15dBm); int txPower = WiFi.getTxPower(); Serial.print("TX power:...