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.
Simon Schmidt 6ae3f5690f add to TODO 2 years ago
data change terminal reload to fetch API, use promises, DOMContentLoaded etc. 2 years ago
include some formating, add variadic templ for logf() 2 years ago
lib add pending settings buffer, gets written in RUHEZUSTAND, add TODO point ! 2 years ago
misc wrong ldr lux-calc (see Excel sheet, mixed x y ) 2 years ago
scripts added win debug script 2 years ago
src added log messages 2 years ago
test moved files, this in on callback for httpserver class 2 years ago
.gitignore gitignore 2 years ago
.gitmodules added lib submodule 2 years ago
README.md debugging support :) over gdbstub 2 years ago
create_gz_c_arr.py modify script for new way of serving gz files 2 years ago
create_gz_files.py modify script for new way of serving gz files 2 years ago
doku.md add to TODO 2 years ago
start_xtensa_gdb_stub.cmd added win debug script 2 years ago
start_xtensa_gdb_stub.sh added win debug script 2 years ago
templ_platformio_ini format 2 years ago
webtest.cmd delete unnecessary files 2 years ago
webtest.sh delete unnecessary files 2 years ago

README.md

Steps to run it

https://arduino-esp8266.readthedocs.io/en/latest/ota_updates/readme.html

create “include/wifi_credentials.h”
#ifndef __WIFI_CREDENTIALS_H
#define __WIFI_CREDENTIALS_H

#ifndef STASSID
#define STASSID "ssid"
#define STAPSK  "key"
#endif

#endif // __WIFI_CREDENTIALS_H
platformio.ini

see templ_platformio_ini

[env:<BOARD>]
platform = espressif8266
board = <BOARD>
framework = arduino
monitor_speed = 115200

extra_scripts = pre:extra_script.py

; stuff for OTA 
; https://docs.platformio.org/en/latest/platforms/espressif8266.html#over-the-air-ota-update
upload_protocol = espota
upload_port = <IPADRESS>
upload_flags =
  --port=8266
  --auth=admin