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")); + } }