Henry Gabryjelski
Henry Gabryjelski
@HACKER-3000's original PR #189 included each of the gradient palettes (by convention, variable names ending in `_gp`) in the palette list. However, this appeared to convert each of the gradient...
fixes #230 ... at least in part ... by ensuring that a hash of the name for the palette and pattern match the value stored in EEPROM. Used MurMurHash3 for...
Having two methods to read/parse/store configuration (EEPROM and JSON) is error-prone (de-synchronized), and increases maintenance costs. See discussion in #216. Thus, it makes sense to store (at least) user-configurable data...
here's a list of things to consider improving: * [ ] It's currently unclear in the web UI which properties apply for which effects. Maybe hierarchical properties? Maybe query the...
Currently, when the list of palettes or effects changes, any saved configuration is implicitly invalidated. This is because, currently, the value is stored as an integer index into the array....
_Originally posted by @tobi01001 in https://github.com/jasoncoon/esp8266-fastled-webserver/pull/216#discussion_r757542649_ In particular, the following should be moved elsewhere: * [] `power` variable * [] `brightness` variable * [] `setShowClock()` function * [] `setClockBackgroundFade()` function...
_Originally posted by @tobi01001 in https://github.com/jasoncoon/esp8266-fastled-webserver/pull/216#discussion_r757550079_ In `convertToJson()`, the request is to have each unique `Field_t` serialization handled in the switch statement directly, rather than code multiple `if` statements that...
This repository was MIT licensed. Then, without warning, the license was changed to GPL. GPL is more restrictive than an MIT license, and actually **_prevents_** the use of the library...
The `unused parameter` warning occurs when `EZTIME_CACHE_EEPROM` is defined, but `EZTIME_CACHE_NVS` is not defined.
add method for getting `DirEntry` from a path (possible names: metadata, lookup) _(putting TODO list into issues for easier tracking and referencing in pull requests)_