zigbee-herdsman-converters 19.37.0 → 19.37.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/devices/tuya.js +1 -1
- package/devices/tuya.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [19.37.1](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v19.37.0...v19.37.1) (2024-05-08)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* Fix Backlight for TuYa TS0013 ([#7497](https://github.com/Koenkk/zigbee-herdsman-converters/issues/7497)) ([085aebc](https://github.com/Koenkk/zigbee-herdsman-converters/commit/085aebc008c0bfa76b4e3bb3d3c8a1e31cbcbe01))
|
|
9
|
+
|
|
3
10
|
## [19.37.0](https://github.com/Koenkk/zigbee-herdsman-converters/compare/v19.36.1...v19.37.0) (2024-05-07)
|
|
4
11
|
|
|
5
12
|
|
package/devices/tuya.js
CHANGED
|
@@ -4842,7 +4842,7 @@ const definitions = [
|
|
|
4842
4842
|
model: 'TS0013',
|
|
4843
4843
|
vendor: 'TuYa',
|
|
4844
4844
|
description: 'Smart light switch - 3 gang without neutral wire',
|
|
4845
|
-
extend: [tuya.modernExtend.tuyaOnOff({
|
|
4845
|
+
extend: [tuya.modernExtend.tuyaOnOff({ backlightModeOffNormalInverted: true, endpoints: ['left', 'center', 'right'] })],
|
|
4846
4846
|
endpoint: (device) => {
|
|
4847
4847
|
return { 'left': 1, 'center': 2, 'right': 3 };
|
|
4848
4848
|
},
|