mirror of https://github.com/arendst/Tasmota.git
decode-config.py: add 6.3.0.10 settings
- add SetOption56/SetOption57
This commit is contained in:
parent
0924dfcfb7
commit
89ceb81660
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
VER = '2.1.0008'
|
VER = '2.1.0009'
|
||||||
|
|
||||||
"""
|
"""
|
||||||
decode-config.py - Backup/Restore Sonoff-Tasmota configuration data
|
decode-config.py - Backup/Restore Sonoff-Tasmota configuration data
|
||||||
|
@ -771,12 +771,20 @@ Setting_6_3_0_4.update({
|
||||||
Setting_6_3_0_4['flag3'][0].update ({
|
Setting_6_3_0_4['flag3'][0].update ({
|
||||||
'tuya_apply_o20': ('<L', (0x3A0,1, 4), (None, None, ('SetOption', '"SetOption54 {}".format($)')) ),
|
'tuya_apply_o20': ('<L', (0x3A0,1, 4), (None, None, ('SetOption', '"SetOption54 {}".format($)')) ),
|
||||||
})
|
})
|
||||||
|
# ======================================================================
|
||||||
Setting_6_3_0_8 = copy.deepcopy(Setting_6_3_0_4)
|
Setting_6_3_0_8 = copy.deepcopy(Setting_6_3_0_4)
|
||||||
Setting_6_3_0_8['flag3'][0].update ({
|
Setting_6_3_0_8['flag3'][0].update ({
|
||||||
'hass_short_discovery_msg': ('<L', (0x3A0,1, 5), (None, None, ('SetOption', '"SetOption55 {}".format($)')) ),
|
'hass_short_discovery_msg': ('<L', (0x3A0,1, 5), (None, None, ('SetOption', '"SetOption55 {}".format($)')) ),
|
||||||
})
|
})
|
||||||
# ======================================================================
|
# ======================================================================
|
||||||
|
Setting_6_3_0_10 = copy.deepcopy(Setting_6_3_0_8)
|
||||||
|
Setting_6_3_0_10['flag3'][0].update ({
|
||||||
|
'use_wifi_scan': ('<L', (0x3A0,1, 6), (None, None, ('SetOption', '"SetOption56 {}".format($)')) ),
|
||||||
|
'use_wifi_rescan': ('<L', (0x3A0,1, 7), (None, None, ('SetOption', '"SetOption57 {}".format($)')) ),
|
||||||
|
})
|
||||||
|
# ======================================================================
|
||||||
Settings = [
|
Settings = [
|
||||||
|
(0x603000A, 0xe00, Setting_6_3_0_10),
|
||||||
(0x6030008, 0xe00, Setting_6_3_0_8),
|
(0x6030008, 0xe00, Setting_6_3_0_8),
|
||||||
(0x6030004, 0xe00, Setting_6_3_0_4),
|
(0x6030004, 0xe00, Setting_6_3_0_4),
|
||||||
(0x6030002, 0xe00, Setting_6_3_0_2),
|
(0x6030002, 0xe00, Setting_6_3_0_2),
|
||||||
|
|
Loading…
Reference in New Issue