-
Notifications
You must be signed in to change notification settings - Fork 466
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add zigbee-thermostat for Vimar 02973 product (#613)
* add vimar zigbee-thermostat sub-driver * add vimar zigbee-thermostat sub-driver dual profiles with relative tests, fix Farenheit behavior and stability * delete duplicated setpoint handlers for ZigBee in Vimar thermostat driver
- Loading branch information
1 parent
19b7761
commit ad4c43b
Showing
6 changed files
with
1,063 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
drivers/SmartThings/zigbee-thermostat/profiles/thermostat-fanless-cooling-no-fw.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: thermostat-fanless-cooling-no-fw | ||
components: | ||
- id: main | ||
categories: | ||
- name: Thermostat | ||
capabilities: | ||
- id: temperatureMeasurement | ||
version: 1 | ||
- id: thermostatCoolingSetpoint | ||
version: 1 | ||
config: | ||
values: | ||
- key: "coolingSetpoint.value" | ||
range: [6, 40] | ||
step: 0.1 | ||
- id: thermostatOperatingState | ||
version: 1 | ||
config: | ||
values: | ||
- key: "thermostatOperatingState.value" | ||
enabledValues: | ||
- cooling | ||
- idle | ||
- id: thermostatMode | ||
version: 1 | ||
- id: refresh | ||
version: 1 |
27 changes: 27 additions & 0 deletions
27
drivers/SmartThings/zigbee-thermostat/profiles/thermostat-fanless-heating-no-fw.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: thermostat-fanless-heating-no-fw | ||
components: | ||
- id: main | ||
categories: | ||
- name: Thermostat | ||
capabilities: | ||
- id: temperatureMeasurement | ||
version: 1 | ||
- id: thermostatHeatingSetpoint | ||
version: 1 | ||
config: | ||
values: | ||
- key: "heatingSetpoint.value" | ||
range: [5, 39] | ||
step: 0.1 | ||
- id: thermostatOperatingState | ||
version: 1 | ||
config: | ||
values: | ||
- key: "thermostatOperatingState.value" | ||
enabledValues: | ||
- heating | ||
- idle | ||
- id: thermostatMode | ||
version: 1 | ||
- id: refresh | ||
version: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.