Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion drivers/Unofficial/tuya-zigbee/fingerprints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,9 @@ zigbeeManufacturer:
deviceLabel: Tuya Switch 1
manufacturer: _TZE204_h2rctifa
model: TS0601
deviceProfileName: basic-switch
deviceProfileName: basic-switch
- id: _TZE284_fziifcxj/TS0601
deviceLabel: Tuya Thermostat
manufacturer: _TZE284_fziifcxj
model: TS0601
deviceProfileName: thermostat
24 changes: 24 additions & 0 deletions drivers/Unofficial/tuya-zigbee/profiles/thermostat.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: thermostat
components:
- id: main
capabilities:
- id: temperatureMeasurement
version: 1
- id: thermostatHeatingSetpoint
version: 1
config:
values:
- key: "heatingSetpoint.value"
range: [5, 30]
step: 0.5
- id: thermostatMode
version: 1
config:
values:
- key: "thermostatMode.value"
- id: battery
version: 1
- id: refresh
version: 1
Comment thread
hcarter-775 marked this conversation as resolved.
categories:
- name: Thermostat
3 changes: 2 additions & 1 deletion drivers/Unofficial/tuya-zigbee/src/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ local unofficial_tuya_driver_template = {
require("curtain"),
require("motion-sensor"),
require("smoke-detector"),
require("switch")
require("switch"),
require("thermostat")
},
health_check = false,
}
Expand Down
Loading
Loading