netmindz
netmindz
You should just use the MoonModules fork of WLED if you want this feature @McKaiver
Why are you trying to map different WLED devices by path? Would make much more sense to do based on hostname, that is normally how to access different hosts
which is ...?
When proxying any web application, it is much more common to proxy pass the entire host rather than a single path. While some web apps can handle being mapped to...
Been a while since I've used this, but think I'm right on saying that you just need to pass the right command line flags to set the output codec and...
Firmware update initiated: firmware.bin assert failed: xQueueSemaphoreTake queue.c:1554 (!( ( xTaskGetSchedulerState() == ( ( BaseType_t ) 0 ) ) && ( xTicksToWait != 0 ) )) Backtrace: 0x40083785:0x3ffbf2fc |
Callback would be preferable as I've found detaching and attaching my own interrupts again looks to be better than disabling all. As a workaround I'm detaching and then attaching either...
See code suggestion https://github.com/scottchiefbaker/ESP-WebOTA/pull/23
Yeah the update gets only to 10% in my case before the interrupt kills it. Disabling all interrupts didn't actually work for me on the ESP32. As for the the...
Initially I tried using noInterrupts() in my callback but that didn't work so I swapped to detaching my rapidly firing interrupt. I'm didn't investigate why it didn't work, but it's...