From 81fb2667b2882ede30e61c7a137d017a0267626d Mon Sep 17 00:00:00 2001 From: Stephan Hadinger Date: Thu, 25 Apr 2019 18:50:04 +0200 Subject: [PATCH] Set gamma correction as default behavior, ie Ledtable 1 --- sonoff/_changelog.ino | 1 + sonoff/settings.ino | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/sonoff/_changelog.ino b/sonoff/_changelog.ino index 065b16579..096ca36d7 100644 --- a/sonoff/_changelog.ino +++ b/sonoff/_changelog.ino @@ -2,6 +2,7 @@ * Add command SetOption63 0/1 to disable relay state feedback scan at restart (#5594, #5663) * Fix TasmotaSerial at 9600 bps solving DFPlayer comms (#5528) * Fix Shelly 2.5 overtemp + * Set gamma correction as default behavior, ie "Ledtable 1" * * 6.5.0.8 20190413 * Add Tuya Dimmer 10 second heartbeat serial packet required by some Tuya dimmer secondary MCUs diff --git a/sonoff/settings.ino b/sonoff/settings.ino index f84173504..85640f32d 100644 --- a/sonoff/settings.ino +++ b/sonoff/settings.ino @@ -860,7 +860,7 @@ void SettingsDefaultSet2(void) Settings.light_color[i] = 255; // Settings.pwm_value[i] = 0; } -// Settings.light_correction = 0; + Settings.light_correction = 1; Settings.light_dimmer = 10; // Settings.light_fade = 0; Settings.light_speed = 1; @@ -1002,7 +1002,7 @@ void SettingsDelta(void) Settings.light_color[1] = 0; Settings.light_color[2] = 0; Settings.light_dimmer = 10; - Settings.light_correction = 0; + Settings.light_correction = 1; Settings.light_fade = 0; Settings.light_speed = 1; Settings.light_scheme = 0;