From 9ecead26455679a6637b1ee5c31810447a08cbe8 Mon Sep 17 00:00:00 2001 From: testbughub <30836300+testbughub@users.noreply.github.com> Date: Mon, 17 May 2021 01:38:49 +0200 Subject: [PATCH] Added bottom segment to digit 9 (#1787) --- esphome/components/tm1637/tm1637.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/tm1637/tm1637.cpp b/esphome/components/tm1637/tm1637.cpp index 833e3caecd..653a9657f4 100644 --- a/esphome/components/tm1637/tm1637.cpp +++ b/esphome/components/tm1637/tm1637.cpp @@ -46,7 +46,7 @@ const uint8_t TM1637_ASCII_TO_RAW[] PROGMEM = { 0b01011111, // '6', ord 0x36 0b01110000, // '7', ord 0x37 0b01111111, // '8', ord 0x38 - 0b01110011, // '9', ord 0x39 + 0b01111011, // '9', ord 0x39 0b01001000, // ':', ord 0x3A 0b01011000, // ';', ord 0x3B TM1637_UNKNOWN_CHAR, // '<', ord 0x3C