Merge pull request #4239 from curzon01/development

add v6.3.0.2 config changes
This commit is contained in:
Theo Arends 2018-11-01 15:22:24 +01:00 committed by GitHub
commit b9717f8e9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python #!/usr/bin/env python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
VER = '2.0.0002' VER = '2.0.0003'
""" """
decode-config.py - Backup/Restore Sonoff-Tasmota configuration data decode-config.py - Backup/Restore Sonoff-Tasmota configuration data
@ -867,7 +867,13 @@ Setting_6_3_0.update({
'energy_kWhtotal_time': ('<L', 0x7B4, None), 'energy_kWhtotal_time': ('<L', 0x7B4, None),
}) })
Setting_6_3_0_2 = Setting_6_3_0
Setting_6_3_0.update({
'timezone_minutes': ('B', 0x66D, None),
})
Settings = [ Settings = [
(0x6030002, 0xe00, Setting_6_3_0_2),
(0x6030000, 0xe00, Setting_6_3_0), (0x6030000, 0xe00, Setting_6_3_0),
(0x6020114, 0xe00, Setting_6_2_1_20), (0x6020114, 0xe00, Setting_6_2_1_20),
(0x6020113, 0xe00, Setting_6_2_1_19), (0x6020113, 0xe00, Setting_6_2_1_19),