Skip to content

Commit

Permalink
Added compatibility to ESP8266
Browse files Browse the repository at this point in the history
Changed WifiManager to AsyncWifimanager

a lot of small changes
  • Loading branch information
MichaelHeimann committed Jul 9, 2023
1 parent 5e4faba commit 8abec32
Show file tree
Hide file tree
Showing 8 changed files with 215 additions and 63 deletions.
17 changes: 14 additions & 3 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
; https://docs.platformio.org/page/projectconf.html

[platformio]
default_envs = esp32c3
default_envs = esp8266


[env]
Expand All @@ -21,19 +21,30 @@ lib_deps =
https://github.com/pidpawel/AsyncTCP.git
https://github.com/khoih-prog/ESPAsyncWebServer.git
bblanchon/[email protected]
https://github.com/tzapu/WiFiManager.git
https://github.com/atc1441/NETSGPClient.git
https://github.com/flowerysong/AsyncElegantOTA.git

https://github.com/khoih-prog/ESPAsync_WiFiManager.git

[env:esp32]
platform = espressif32
board = az-delivery-devkit-v4
lib_deps =
${env.lib_deps}
build_flags = -DESP32WROOM
monitor_filters = esp32_exception_decoder


[env:esp32c3]
platform = espressif32
board = seeed_xiao_esp32c3
lib_deps =
${env.lib_deps}
build_flags = -DESP32C3
monitor_filters = esp32_exception_decoder

[env:esp8266]
platform = espressif8266
board = nodemcuv2
lib_deps =
${env.lib_deps}
build_flags = -DESP8266
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Loading

0 comments on commit 8abec32

Please sign in to comment.