Benoit Anastay
Benoit Anastay
After looking at the source code, I guess that the culprit is that recursivity https://github.com/home-assistant/core/blob/3f512e38db9ed3e85626190077134f9274282e2a/homeassistant/components/media_source/local_source.py#L119-L122 ```python base.children = [ self._browse_media(source_dir_id, "") for source_dir_id in self.hass.config.media_dirs ] ``` If the folder...
Is it possible to reopen this issue ?
> > 2022.11 > > 2022.11.0 worked fine for me. 2022.11.1 broke the system. I've tried to downgrade several times unsuccessfully. You should try to take a backup and reinstall...
The relevant error seems to be that one ```Can't execute update while a task is in progress``` It's hard to tell why it's stuck, have you reboot your host?
You will probably have to look in the home assistant (core) log file
@joeybab3 If I rember it's just using a uint 16 instead of an uint 8
Oups no forgot to update the INO file
@HerbertHorst the INO for the esp8266 was updated and it doensn't seem to be an issue with the ESP what you have sound like a integer overflow can you check...
To explai a bit can only contain 8bit b1111111 is xFF (255), 256 is b100000000 x100 If you read only the 8 bits on the right the N value become...
@HerbertHorst It's not your strip it's really an issue with N value Can you add this to your code after `ledstrip.SetPixelColor(N, pixel);` and give me the result ? ``` Serial.println();...