From 6382c2806cceac90c6068a613545ded9b9ec3728 Mon Sep 17 00:00:00 2001 From: sfromis <47082390+sfromis@users.noreply.github.com> Date: Tue, 18 Jul 2023 08:26:51 +0200 Subject: [PATCH] More user-friendly defaults for DisplayMode and DisplayDimmer (#19138) Changing default for DisplayMode from 1 to 0. Users are getting confused by the display doing something they did not ask for (and not being aware of DisplayMode). This got worse with LVGL/HASPmota displays becoming common, with users having much less reason to dive into the old DisplayXxxxx commands. And it may even be hard to see that it is even a display of time/date causing the display to flicker. Changing default for DisplayDimmer from 10% to 50%. The low brightness of 10% is not always easy to see, especially in daylight. 50% is generally better, while not going "full blast" with 100%. --- tasmota/tasmota_support/settings.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasmota/tasmota_support/settings.ino b/tasmota/tasmota_support/settings.ino index 9735c3dbda28..4e796b400b51 100644 --- a/tasmota/tasmota_support/settings.ino +++ b/tasmota/tasmota_support/settings.ino @@ -1289,12 +1289,12 @@ void SettingsDefaultSet2(void) { // Display // Settings->display_model = 0; - Settings->display_mode = 1; + Settings->display_mode = 0; Settings->display_refresh = 2; Settings->display_rows = 2; Settings->display_cols[0] = 16; Settings->display_cols[1] = 8; - Settings->display_dimmer_protected = -10; // 10% + Settings->display_dimmer_protected = -50; // 50% Settings->display_size = 1; Settings->display_font = 1; // Settings->display_rotate = 0;