Frank

Results 470 comments of Frank

Right now this will be hard to achieve, as we have a lot of esp specific code that will not run on a PI with linux. Porting to a different...

Not planned, aw it would imply a complete rewrite of espressif specific code, and a full set set of 100% compatible libraries.

The analog clock usermod allows customization of colors, maybe try it instead if the buildin clock feature: https://github.com/Aircoookie/WLED/tree/0_15/usermods/Analog_Clock build_flags `-D USERMOD_ANALOG_CLOCK`

Most important is to understand the concept of "tasks" (aka thread aka process): https://www.freertos.org/taskandcr.html Async Webserver seems to run in a separate task. As this task is not part of...

> links to "hidden dev/architecture rules" that are not in the contribution guide Hi @R1DEN, actually we don't have these documents. however to keep the overall design and architecture understandable...

> @softhack007 perfectly understandable. So is the information already in the PR comment sufficient for me to try come up with a different solution? Or would you (or anybody else)...

@adrianschroeter thanks for the testing 👍 I still see the PR is targeted at our 'main' branch. Please rebase it for `0_15`, then we can merge.

> If I pass 20, which is an ADC pin, into `analogInputToDigitalPin(p)` it would return -1 due to the first check as 20 is not less than `NUM_ANALOG_INPUTS` which is...

> error: no matching function for call to 'max(double, float&)' Might be a follow-up error on esp32 - the templates for max() and min() expect exactly the same type for...

> Hi Frank, thank you for identifying this issue, the library is indeed untested on ESP32. It is known to work well on Teensy (with the Octoboard break-out) and more...