2021-09-07 10:13:24 +02:00
2021-09-07 19:36:05 +02:00
2021-07-19 12:34:06 +02:00
2021-09-07 10:56:33 +02:00
2021-07-02 17:53:31 +02:00
2021-06-24 18:38:30 +02:00
2021-07-22 21:50:01 +02:00
2021-09-06 00:46:07 +02:00
2021-06-23 16:18:54 +02:00
2021-06-23 16:18:54 +02:00

How-To use this Project

  1. Download and install Visual Studio Code
  2. Install PlatformIO IDE extension for Visual Studio Code
  3. Create wifi_credentials.h from templ_wifi_credentials.h in include/
#ifndef __WIFI_CREDENTIALS_H
#define __WIFI_CREDENTIALS_H

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

#endif // __WIFI_CREDENTIALS_H
  1. Create platformio.ini from templ_platformio_ini
$ cp templ_platformio_ini platformio.ini
  1. Uploading new firmware
# upload program via ota
$ pio run -t upload
# upload file system via ota
$ pio run -t uploadfs

# upload program via Serial Port
# Serial Port needs to be selected in platformio.ini
$ pio run -t upload -e serial
# upload file system via Serial Port
$ pio run -t uploadfs -e serial

Additional used sources and libraries in this project and DOKU.md

Description
ESP8266 Treppenlichtsteuerung mit OTA zum Firmware Upload
Readme 6.2 MiB
Languages
C++ 76.3%
C 10.9%
JavaScript 4.5%
HTML 3.2%
CSS 2.6%
Other 2.5%