ESP8266 Treppenlichtsteuerung mit OTA zum Firmware Upload
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 416B

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
123456789101112131415161718192021
  1. ### Steps to run it
  2. https://arduino-esp8266.readthedocs.io/en/latest/ota_updates/readme.html
  3. ##### create "include/wifi_credentials.h"
  4. ```cpp
  5. #ifndef __WIFI_CREDENTIALS_H
  6. #define __WIFI_CREDENTIALS_H
  7. #ifndef STASSID
  8. #define STASSID "ssid"
  9. #define STAPSK "key"
  10. #endif
  11. #endif // __WIFI_CREDENTIALS_H
  12. ```
  13. ##### platformio.ini
  14. change IP of esp8266 accordingly
  15. IP gets printed on Serial Monitor after first Upload