From d417eb0e2b98f45129871134bfb89f316ef4774a Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Fri, 30 Apr 2021 17:46:01 +0200 Subject: [PATCH] Fix display model message --- tasmota/xdsp_01_lcd.ino | 2 ++ tasmota/xdsp_02_ssd1306.ino | 2 +- tasmota/xdsp_03_matrix.ino | 2 ++ tasmota/xdsp_07_sh1106.ino | 4 ++-- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/tasmota/xdsp_01_lcd.ino b/tasmota/xdsp_01_lcd.ino index efb3b542c..7a2b16c20 100644 --- a/tasmota/xdsp_01_lcd.ino +++ b/tasmota/xdsp_01_lcd.ino @@ -81,6 +81,8 @@ void LcdInitDriver(void) { #endif // USE_DISPLAY_MODES1TO5 LcdInitMode(); + + AddLog(LOG_LEVEL_INFO, PSTR("DSP: LCD")); } } diff --git a/tasmota/xdsp_02_ssd1306.ino b/tasmota/xdsp_02_ssd1306.ino index 9b7ae5ded..7e96b7162 100644 --- a/tasmota/xdsp_02_ssd1306.ino +++ b/tasmota/xdsp_02_ssd1306.ino @@ -88,7 +88,7 @@ void SSD1306InitDriver(void) { renderer->DisplayOnff(1); #endif - AddLog(LOG_LEVEL_INFO, PSTR("DSP: SD1306")); + AddLog(LOG_LEVEL_INFO, PSTR("DSP: SSD1306")); } } diff --git a/tasmota/xdsp_03_matrix.ino b/tasmota/xdsp_03_matrix.ino index 6d20efeec..957db8431 100644 --- a/tasmota/xdsp_03_matrix.ino +++ b/tasmota/xdsp_03_matrix.ino @@ -221,6 +221,8 @@ void MatrixInitDriver(void) { Settings.display_height = 8; MatrixInitMode(); + + AddLog(LOG_LEVEL_INFO, PSTR("DSP: 8x8Matrix")); } } } diff --git a/tasmota/xdsp_07_sh1106.ino b/tasmota/xdsp_07_sh1106.ino index 807e43f75..6763b076b 100644 --- a/tasmota/xdsp_07_sh1106.ino +++ b/tasmota/xdsp_07_sh1106.ino @@ -85,9 +85,9 @@ void SH1106InitDriver() { renderer->Updateframe(); renderer->DisplayOnff(1); #endif - } - AddLog(LOG_LEVEL_INFO, PSTR("DSP: SH1106")); + AddLog(LOG_LEVEL_INFO, PSTR("DSP: SH1106")); + } }