Skip to content

Commit 73afeb5

Browse files
committed
Update v14.3.0.4 settings
1 parent d0cb359 commit 73afeb5

File tree

2 files changed

+17
-13
lines changed

2 files changed

+17
-13
lines changed

README.md

+11-10
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Comparing backup files created by **decode-config** and [.dmp](#dmp-format) file
4343
Using the latest development version of decode-config is only necessary if you also use the latest development version of Tasmota.
4444

4545
<!-- markdownlint-disable MD033 -->
46-
[![development version](https://img.shields.io/badge/development-v14.3.0.3-blue.svg)](https://github.com/tasmota/decode-config/tree/development)
46+
[![development version](https://img.shields.io/badge/development-v14.3.0.4-blue.svg)](https://github.com/tasmota/decode-config/tree/development)
4747

4848
## Table of contents
4949
<details>
@@ -1138,15 +1138,16 @@ These Tasmota commands are unsupported and not implemented in **decode-config**
11381138
| | | | `UsfRename` |
11391139
| | | | `UsfRun` |
11401140
| | | | `UsfServe` |
1141-
| **Light** | DaliLight | *Dali\** | `Color<x>` |
1142-
| | DimmerRange | *Channel<x\>* | `Dimmer` |
1143-
| | DimmerStep | *CT* | |
1144-
| | Fade | *CTRange* | |
1145-
| | LedTable | *HsbColor* | |
1146-
| | Pixels | *Led<x\>* | |
1147-
| | PWMDimmerPWMs | *Palette* | |
1148-
| | RGBWWTable | *White* | |
1149-
| | Rotation | *VirtualCT* | |
1141+
| **Light** | DaliGroupSliders | *Dali\** | `Color<x>` |
1142+
| | DaliLight | *Channel<x\>* | `Dimmer` |
1143+
| | DimmerRange | *CT* | |
1144+
| | DimmerStep | *CTRange* | |
1145+
| | Fade | *HsbColor* | |
1146+
| | LedTable | *Led<x\>* | |
1147+
| | Pixels | *Palette* | |
1148+
| | PWMDimmerPWMs | *White* | |
1149+
| | RGBWWTable | *VirtualCT* | |
1150+
| | Rotation | | |
11501151
| | Scheme | | |
11511152
| | ShdLeadingEdge | | |
11521153
| | ShdWarmupBrightness | | |

decode-config.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33
from __future__ import print_function
44
METADATA = {
5-
'VERSION': '14.3.0.3',
5+
'VERSION': '14.3.0.4',
66
'DESCRIPTION': 'Backup/restore and decode configuration tool for Tasmota',
77
'CLASSIFIER': 'Development Status :: 4 - Beta',
88
'URL': 'https://github.com/tasmota/decode-config',
@@ -2893,10 +2893,13 @@ def match(self, setting_hardware, config_version):
28932893
'disable_slider_updates': (HARDWARE.ESP, '<L', (0xF74,1,15), (None, None, ('SetOption', '"SO161 {}".format($)')) ),
28942894
})
28952895
# ======================================================================
2896-
SETTING_14_3_0_3 = copy.copy(SETTING_14_3_0_2)
2896+
SETTING_14_3_0_4 = copy.copy(SETTING_14_3_0_2)
2897+
SETTING_14_3_0_4['mbflag2'][1].update({
2898+
'dali_group_sliders': (HARDWARE.ESP, '<L', (0xFD8,5,19), (None, '0 <= $ <= 16', ('Light', '"DaliGroupSliders {}".format($)')) ),
2899+
})
28972900
# ======================================================================
28982901
SETTINGS = [
2899-
(0x0E030003,0x1000, SETTING_14_3_0_3),
2902+
(0x0E030004,0x1000, SETTING_14_3_0_4),
29002903
(0x0E030002,0x1000, SETTING_14_3_0_2),
29012904
(0x0E020006,0x1000, SETTING_14_2_0_6),
29022905
(0x0E020004,0x1000, SETTING_14_2_0_4),

0 commit comments

Comments
 (0)