Skip to content

Commit 635e29c

Browse files
committed
Update v14.4.1.3 settings
1 parent d3538eb commit 635e29c

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1145,8 +1145,9 @@ These Tasmota commands are unsupported and not implemented in **decode-config**
11451145
| | Fade | *HsbColor* | |
11461146
| | LedTable | *Led<x\>* | |
11471147
| | Pixels | *Palette* | |
1148-
| | PWMDimmerPWMs | *White* | |
1149-
| | RGBWWTable | *VirtualCT* | |
1148+
| | PixelType | *White* | |
1149+
| | PWMDimmerPWMs | *VirtualCT* | |
1150+
| | RGBWWTable | | |
11501151
| | Rotation | | |
11511152
| | Scheme | | |
11521153
| | ShdLeadingEdge | | |

decode-config.py

+5
Original file line numberDiff line numberDiff line change
@@ -2958,6 +2958,11 @@ def match(self, setting_hardware, config_version):
29582958
})
29592959
# ======================================================================
29602960
SETTING_14_4_1_3 = copy.copy(SETTING_14_4_1_2)
2961+
SETTING_14_4_1_3['mbflag2'][1].update({
2962+
'light_pixels_order': (HARDWARE.ESP, '<L', (0xFD8,3,4), (None, None, ('Light', '"PixelType {}".format(($ & 0x7) | (@["mbflag2"]["light_pixels_w_first"] >> 3) | (@["mbflag2"]["light_pixels_rgbw"] >> 4) )')) ),
2963+
'light_pixels_rgbw': (HARDWARE.ESP, '<L', (0xFD8,1,7), (None, None, ('Light', None)) ),
2964+
'light_pixels_w_first': (HARDWARE.ESP, '<L', (0xFD8,1,8), (None, None, ('Light', None)) ),
2965+
})
29612966
# ======================================================================
29622967
SETTINGS = [
29632968
(0x0E040103,0x1000, SETTING_14_4_1_3),

0 commit comments

Comments
 (0)