Skip to content

Commit

Permalink
Update v14.2.0.4 settings
Browse files Browse the repository at this point in the history
  • Loading branch information
curzon01 committed Sep 9, 2024
1 parent fc03049 commit 0fe6a14
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 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.2.0.3-blue.svg)](https://github.com/tasmota/decode-config/tree/development)
[![development version](https://img.shields.io/badge/development-v14.2.0.4-blue.svg)](https://github.com/tasmota/decode-config/tree/development)

## Table of contents
<details>
Expand Down Expand Up @@ -1096,7 +1096,7 @@ These Tasmota commands are unsupported and not implemented in **decode-config**
| | Sensor18 | | |
| | Sensor20 | | |
| | Sensor29 | | |
| | Sensor34 | | |
| | Sensor34 | *Sensor34 1,Sensor34 2*| |
| | Sensor40 | | |
| | Sensor54 | | |
| | Sensor68 | | |
Expand Down
8 changes: 7 additions & 1 deletion 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.2.0.3',
'VERSION': '14.2.0.4',
'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 @@ -2873,7 +2873,13 @@ def match(self, setting_hardware, config_version):
'sb_receive_invert': (HARDWARE.ESP, '<L', (0x3A0,1,19), (None, None, ('SetOption', '"SO69 {}".format($)')) ),
})
# ======================================================================
SETTING_14_2_0_4 = copy.copy(SETTING_14_2_0_3)
SETTING_14_2_0_4.update ({
'weight_precision': (HARDWARE.ESP, 'B', 0x532, (None, '0 <= $ <= 10', ('Management', None)) ),
})
# ======================================================================
SETTINGS = [
(0x0E020004,0x1000, SETTING_14_2_0_4),
(0x0E020003,0x1000, SETTING_14_2_0_3),
(0x0E010003,0x1000, SETTING_14_1_0_3),
(0x0E010002,0x1000, SETTING_14_1_0_2),
Expand Down

0 comments on commit 0fe6a14

Please sign in to comment.