Skip to content

Commit

Permalink
Update v14.1.0.2 settings
Browse files Browse the repository at this point in the history
  • Loading branch information
curzon01 committed Jun 12, 2024
1 parent 577976e commit 4699ca1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
4 changes: 2 additions & 2 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.1.0.1-blue.svg)](https://github.com/tasmota/decode-config/tree/development)
[![development version](https://img.shields.io/badge/development-v14.1.0.2-blue.svg)](https://github.com/tasmota/decode-config/tree/development)

## Table of contents
<details>
Expand Down Expand Up @@ -1169,7 +1169,7 @@ These Tasmota commands are unsupported and not implemented in **decode-config**
| | SerialConfig | | |
| | SerialDelimiter | | |
| | SSerialConfig | | |
| | SSerialSend9 | | |
| | SSerialMode | | |
| | TCPBaudrate | | |
| | TCPConfig | | |
| **Domoticz** | DomoticzIdx<x\> | | |
Expand Down
11 changes: 8 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.1.0.1',
'VERSION': '14.1.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 @@ -2847,10 +2847,15 @@ def match(self, setting_hardware, config_version):
'tcp_baudrate': (HARDWARE.ESP, '<H', 0x540, (None, None, ('Serial', '"TCPBaudrate {}".format($)')), ('$ * 1200','$ // 1200') ),
})
# ======================================================================
SETTING_14_1_0_1 = copy.copy(SETTING_14_0_0_4)
SETTING_14_1_0_2 = copy.copy(SETTING_14_0_0_4)
SETTING_14_1_0_2['sbflag1'][1].pop('serbridge_console',None)
SETTING_14_1_0_2.pop('tcp_baudrate',None)
SETTING_14_1_0_2.update ({
'sserial_mode': (HARDWARE.ESP, 'B', 0xF41, (None, '0 <= $ <= 3', ('Serial', '"SSerialMode {}".format($)')) ),
})
# ======================================================================
SETTINGS = [
(0x0E010001,0x1000, SETTING_14_1_0_1),
(0x0E010002,0x1000, SETTING_14_1_0_2),
(0x0E000004,0x1000, SETTING_14_0_0_4),
(0x0E000002,0x1000, SETTING_14_0_0_2),
(0x0D040004,0x1000, SETTING_13_4_0_4),
Expand Down

0 comments on commit 4699ca1

Please sign in to comment.