Skip to content

Commit

Permalink
Update v14.3.0.2 settings
Browse files Browse the repository at this point in the history
  • Loading branch information
curzon01 committed Oct 22, 2024
1 parent 393e053 commit 0b54548
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 13 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Comparing backup files created by **decode-config** and [.dmp](#dmp-format) file
Using the latest development version of decode-config is only necessary if you also use the latest development version of Tasmota.

<!-- markdownlint-disable MD033 -->
[![development version](https://img.shields.io/badge/development-v14.3.0.1-blue.svg)](https://github.com/tasmota/decode-config/tree/development)
[![development version](https://img.shields.io/badge/development-v14.3.0.2-blue.svg)](https://github.com/tasmota/decode-config/tree/development)

## Table of contents
<details>
Expand Down Expand Up @@ -1138,15 +1138,15 @@ These Tasmota commands are unsupported and not implemented in **decode-config**
| | | | `UsfRename` |
| | | | `UsfRun` |
| | | | `UsfServe` |
| **Light** | DaliWeb | *Channel<x\>* | `Color<x>` |
| | DimmerRange | *CT* | `Dimmer` |
| | DimmerStep | *CTRange* | |
| | Fade | *HsbColor* | |
| | LedTable | *Led<x\>* | |
| | Pixels | *Palette* | |
| | PWMDimmerPWMs | *White* | |
| | RGBWWTable | *VirtualCT* | |
| | Rotation | | |
| **Light** | DaliLight | *Dali\** | `Color<x>` |
| | DimmerRange | *Channel<x\>* | `Dimmer` |
| | DimmerStep | *CT* | |
| | Fade | *CTRange* | |
| | LedTable | *HsbColor* | |
| | Pixels | *Led<x\>* | |
| | PWMDimmerPWMs | *Palette* | |
| | RGBWWTable | *White* | |
| | Rotation | *VirtualCT* | |
| | Scheme | | |
| | ShdLeadingEdge | | |
| | ShdWarmupBrightness | | |
Expand Down
10 changes: 7 additions & 3 deletions decode-config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
from __future__ import print_function
METADATA = {
'VERSION': '14.3.0.1',
'VERSION': '14.3.0.2',
'DESCRIPTION': 'Backup/restore and decode configuration tool for Tasmota',
'CLASSIFIER': 'Development Status :: 4 - Beta',
'URL': 'https://github.com/tasmota/decode-config',
Expand Down Expand Up @@ -2883,10 +2883,14 @@ def match(self, setting_hardware, config_version):
'dali_web': (HARDWARE.ESP, '<L', (0xFA0,1,13), (None, '0 <= $ <= 1', ('Light', '"DaliWeb {}".format($)')) ),
})
# ======================================================================
SETTING_14_3_0_1 = copy.copy(SETTING_14_2_0_6)
SETTING_14_3_0_2 = copy.copy(SETTING_14_2_0_6)
SETTING_14_3_0_2['sbflag1'][1].pop('dali_web',None)
SETTING_14_3_0_2['sbflag1'][1].update({
'dali_light': (HARDWARE.ESP, '<L', (0xFA0,1,13), (None, '0 <= $ <= 1', ('Light', '"DaliLight {}".format($)')) ),
})
# ======================================================================
SETTINGS = [
(0x0E030001,0x1000, SETTING_14_3_0_1),
(0x0E030002,0x1000, SETTING_14_3_0_2),
(0x0E020006,0x1000, SETTING_14_2_0_6),
(0x0E020004,0x1000, SETTING_14_2_0_4),
(0x0E020003,0x1000, SETTING_14_2_0_3),
Expand Down

0 comments on commit 0b54548

Please sign in to comment.