Hey all. I’m trying to use the ESPAsyncWebServer library but having issues getting any of the example code to work.
Running the perftest example: ESPAsyncWebServer/examples/PerfTests/PerfTests.ino at main · ESP32Async/ESPAsyncWebServer · GitHub
I’m using platformio with the following settings
platform = espressif32
board = esp32dev
framework = arduino
monitor_speed = 115200
lib_compat_mode = strict
lib_ldf_mode = chain
lib_deps =
mike-matera/FastPID@^1.3.1
madhephaestus/ESP32Servo@^3.0.6
ESP32Async/AsyncTCP
ESP32Async/ESPAsyncWebServer
Not seeing any signs of life over the serial port or any connections to the wifi. Interestingly the following ifdef is false, but not sure why or if this has an affect on my issue.
#if SOC_WIFI_SUPPORTED || CONFIG_ESP_WIFI_REMOTE_ENABLED || LT_ARD_HAS_WIFI
WiFi.mode(WIFI_AP);
WiFi.softAP("esp-captive");
#endif