Minor changes

This commit is contained in:
Alexey Zholtikov 2023-01-24 19:40:00 +03:00
parent 619b3a6cdf
commit 3953473ea8
2 changed files with 23 additions and 10 deletions

View File

@ -1,6 +1,6 @@
# Tested on # Tested on
1. MOES 1CH 10A. Built on Tuya WiFi module WA2 (WB2S) (BK7231T chip). Replacement required. Performed replacement with ESP-02S (TYWE2S). [Photo](https://github.com/aZholtikov/ESP-NOW-Switch/tree/main/hardware/MOES_1CH_10A). 1. MOES 1CH 10A. Built on Tuya WiFi module WA2 (WB2S) (BK7231T chip). Replacement required. Performed replacement with ESP-02S (analogue of TYWE2S but with 2Mb flash). [Photo](https://github.com/aZholtikov/ESP-NOW-Switch/tree/main/hardware/MOES_1CH_10A).
```text ```text
Relay GPIO GPIO04 HIGH Relay GPIO GPIO04 HIGH

View File

@ -2,33 +2,46 @@
platform = espressif8266 platform = espressif8266
board = esp12e board = esp12e
framework = arduino framework = arduino
lib_extra_dirs = board_build.ldscript = eagle.flash.4m2m.ld
lib_deps = lib_deps =
https://github.com/aZholtikov/ZHNetwork https://github.com/aZholtikov/ZHNetwork
https://github.com/aZholtikov/ZHConfig https://github.com/aZholtikov/ZHConfig
bblanchon/ArduinoJson@^6.19.4 https://github.com/bblanchon/ArduinoJson
me-no-dev/ESP Async WebServer@^1.2.3 https://github.com/me-no-dev/ESPAsyncWebServer
[env:ESP-12E-OTA] [env:ESP-12E-OTA]
platform = espressif8266 platform = espressif8266
board = esp12e board = esp12e
framework = arduino framework = arduino
board_build.ldscript = eagle.flash.4m2m.ld
upload_port = 192.168.4.1 upload_port = 192.168.4.1
upload_protocol = espota upload_protocol = espota
lib_extra_dirs =
lib_deps = lib_deps =
https://github.com/aZholtikov/ZHNetwork https://github.com/aZholtikov/ZHNetwork
https://github.com/aZholtikov/ZHConfig https://github.com/aZholtikov/ZHConfig
bblanchon/ArduinoJson@^6.19.4 https://github.com/bblanchon/ArduinoJson
me-no-dev/ESP Async WebServer@^1.2.3 https://github.com/me-no-dev/ESPAsyncWebServer
[env:ESP-02S] [env:ESP-02S]
platform = espressif8266 platform = espressif8266
board = esp8285 board = esp8285
framework = arduino framework = arduino
lib_extra_dirs = board_build.ldscript = eagle.flash.2m256.ld
lib_deps = lib_deps =
https://github.com/aZholtikov/ZHNetwork https://github.com/aZholtikov/ZHNetwork
https://github.com/aZholtikov/ZHConfig https://github.com/aZholtikov/ZHConfig
bblanchon/ArduinoJson@^6.19.4 https://github.com/bblanchon/ArduinoJson
me-no-dev/ESP Async WebServer@^1.2.3 https://github.com/me-no-dev/ESPAsyncWebServer
[env:ESP-02S-OTA]
platform = espressif8266
board = esp8285
framework = arduino
board_build.ldscript = eagle.flash.2m256.ld
upload_port = 192.168.4.1
upload_protocol = espota
lib_deps =
https://github.com/aZholtikov/ZHNetwork
https://github.com/aZholtikov/ZHConfig
https://github.com/bblanchon/ArduinoJson
https://github.com/me-no-dev/ESPAsyncWebServer