mirror of https://github.com/arendst/Tasmota.git
Berry SK6812_GRBW crash (#19166)
This commit is contained in:
parent
421c95a51b
commit
6d3aedcafe
|
@ -14,6 +14,7 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
### Fixed
|
||||
- Initial battery level percentage (#19160)
|
||||
- Berry SK6812_GRBW crash
|
||||
|
||||
### Removed
|
||||
|
||||
|
|
|
@ -155,7 +155,7 @@ extern "C" {
|
|||
}
|
||||
uint32_t pixels_size; // number of bytes to push
|
||||
if (s_ws2812_grb) { s_ws2812_grb->Show(); pixels_size = s_ws2812_grb->PixelsSize(); }
|
||||
if (s_sk6812_grbw) { s_sk6812_grbw->Show(); pixels_size = s_ws2812_grb->PixelsSize(); }
|
||||
if (s_sk6812_grbw) { s_sk6812_grbw->Show(); pixels_size = s_sk6812_grbw->PixelsSize(); }
|
||||
|
||||
// Wait for RMT/I2S to complete fixes distortion due to analogRead
|
||||
// 1ms is needed for 96 bytes
|
||||
|
|
Loading…
Reference in New Issue