mirror of https://github.com/arendst/Tasmota.git
Merge pull request #4239 from curzon01/development
add v6.3.0.2 config changes
This commit is contained in:
commit
b9717f8e9d
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
VER = '2.0.0002'
|
||||
VER = '2.0.0003'
|
||||
|
||||
"""
|
||||
decode-config.py - Backup/Restore Sonoff-Tasmota configuration data
|
||||
|
@ -867,7 +867,13 @@ Setting_6_3_0.update({
|
|||
'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 = [
|
||||
(0x6030002, 0xe00, Setting_6_3_0_2),
|
||||
(0x6030000, 0xe00, Setting_6_3_0),
|
||||
(0x6020114, 0xe00, Setting_6_2_1_20),
|
||||
(0x6020113, 0xe00, Setting_6_2_1_19),
|
||||
|
|
Loading…
Reference in New Issue