mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-21 05:23:27 +02:00
Fix tm1637 bootloop (#2929)
This commit is contained in:
@@ -176,7 +176,7 @@ void TM1637Display::display() {
|
||||
|
||||
// Write the data bytes
|
||||
if (this->inverted_) {
|
||||
for (uint8_t i = this->length_ - 1; i >= 0; i--) {
|
||||
for (int8_t i = this->length_ - 1; i >= 0; i--) {
|
||||
this->send_byte_(this->buffer_[i]);
|
||||
}
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user