Go to file
Thomas Kolb 8e9124c884 Avoid LED update glitches caused by flash access
Now any access to the flash, either through update writing or SPIFFS
access, is blocked while the LED stripes are written. This is
accomplished using a FreeRTOS semaphore.
2019-12-15 18:03:23 +01:00
data Load sensitive data from the SPIFFS 2019-11-26 22:03:44 +01:00
include Avoid LED update glitches caused by flash access 2019-12-15 18:03:23 +01:00
scripts Update: implement update of the SPIFFS image 2019-12-02 21:21:13 +01:00
src Avoid LED update glitches caused by flash access 2019-12-15 18:03:23 +01:00
.gitignore Load sensitive data from the SPIFFS 2019-11-26 22:03:44 +01:00
README.md Load sensitive data from the SPIFFS 2019-11-26 22:03:44 +01:00
platformio.ini Initial commit: SK6812 LED Fader, HTTP Server 2019-11-17 16:28:09 +01:00

README.md

ESP32 firmware for an SK6812-based lamp

Setup notes

Authentication data for WiFi connections and OTA firmware updates is stored in the SPIFFS. You must create the following files:

data/etc/wlan

This file contains WiFi logins. Each entry consists of two lines: The first line contains the SSID to connect to, the second the password.

data/etc/auth

This file configures the authentication at the device. For now, this is used for OTA updates.

The file contains two lines: First the password, second the salt.

The salt must be known to any client performing OTA updates and can be stored in a local configuration file. The password should never be stored in any config file.