diff --git a/sonoff/_changelog.ino b/sonoff/_changelog.ino index 6885412ac..37e5a5e75 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" * Refactored management of lights, using classes and integers instead of floats. * * 6.5.0.8 20190413 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;