From 101cf83d7d235a7ccc11003e447d06d485b5fc4e Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Tue, 27 Nov 2018 10:54:34 +0100 Subject: [PATCH] Update settings.ino --- sonoff/settings.ino | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sonoff/settings.ino b/sonoff/settings.ino index 6d3263f41..99e81230d 100644 --- a/sonoff/settings.ino +++ b/sonoff/settings.ino @@ -858,6 +858,9 @@ void SettingsDelta(void) if (Settings.version < 0x0603000A) { Settings.param[P_LOOP_SLEEP_DELAY] = LOOP_SLEEP_DELAY; } + if (Settings.version < 0x0603000E) { + Settings.flag2.calc_resolution = CALC_RESOLUTION; + } Settings.version = VERSION; SettingsSave(1);