We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45af854 commit 7fe6cfaCopy full SHA for 7fe6cfa
src/network_interfaces/Wippersnapper_ESP32.h
@@ -103,7 +103,15 @@ class Wippersnapper_ESP32 : public Wippersnapper {
103
WiFi.disconnect();
104
delay(100);
105
106
+// For boards with a "3D Antenna", we need to reduce the TX power
107
+// to prevent flaky operation.
108
+// NOTE: This is a known issue with the QT Py series of boards.
109
+#ifdef ARDUINO_ADAFRUIT_QTPY_ESP32S2 || \
110
+ ARDUINO_ADAFRUIT_QTPY_ESP32S3_NOPSRAM || \
111
+ ARDUINO_ADAFRUIT_QTPY_ESP32S3_N4R2 || ARDUINO_ADAFRUIT_QTPY_ESP32C3 || \
112
+ ARDUINO_ADAFRUIT_QTPY_ESP32_PICO
113
WiFi.setTxPower(WIFI_POWER_15dBm);
114
+#endif
115
116
// Perform a network scan
117
int n = WiFi.scanNetworks();
0 commit comments