I solved the flickering Issue for WIFI / BT OFF. I had to adjust the number of NOPs in the TLC5973.cpp to fit the Timing.
void TLC5973::writeZero(){
pulse();
NOP;
NOP;
NOP;
NOP;
}
void TLC5973::writeNone(){
NOP;
NOP;
NOP;
NOP;
NOP;
NOP;
NOP;
NOP;
}
But still while WIFI /BT ON there ...
Search found 2 matches
- Tue Oct 17, 2023 10:56 am
- Forum: ESP32 Arduino
- Topic: ESP32 (WT32-ETH01) and TLC5973 LED Driver - Flickering issue
- Replies: 1
- Views: 4305
- Sat Oct 14, 2023 3:15 pm
- Forum: ESP32 Arduino
- Topic: ESP32 (WT32-ETH01) and TLC5973 LED Driver - Flickering issue
- Replies: 1
- Views: 4305
ESP32 (WT32-ETH01) and TLC5973 LED Driver - Flickering issue
Hello everyone,
I’m facing issues with the TLC5973 LED driver when paired with the WT32-ETH01 microcontroller. In my project using Arduino I use the TLC5973 to control LEDs. When I try dimming just one color, everything works perfectly. However, as soon as I dim two or three colors, at high ...
I’m facing issues with the TLC5973 LED driver when paired with the WT32-ETH01 microcontroller. In my project using Arduino I use the TLC5973 to control LEDs. When I try dimming just one color, everything works perfectly. However, as soon as I dim two or three colors, at high ...