Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add specific driver for Vimar Touch Thermostats of type 02952.b #29

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
9 changes: 9 additions & 0 deletions .homeycompose/capabilities/summer_winter.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"title": {
"en": "Season"
},
"type": "string",
"getable": true,
"setable": false,
"uiComponent": "sensor"
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The sensors probably need a capability icon as well, otherwise they will appear with an empty placeholder in the UI.

10 changes: 10 additions & 0 deletions .homeycompose/capabilities/valve_cooling.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"title": {
"en": "Cooling"
},
"type": "boolean",
"getable": true,
"setable": false,
"uiComponent": "sensor",
"uiQuickAction": false
}
10 changes: 10 additions & 0 deletions .homeycompose/capabilities/valve_heating.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"title": {
"en": "Heating"
},
"type": "boolean",
"getable": true,
"setable": false,
"uiComponent": "sensor",
"uiQuickAction": false
}
36 changes: 36 additions & 0 deletions .homeycompose/capabilities/vimar_thermostat_mode.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@

{
"type": "enum",
"title": {
"en": "Mode"
},
"values": [
{
"id": "1",
"title": {
"en": "Comfort"
}
},
{
"id": "2",
"title": {
"en": "Standby"
}
},
{
"id": "3",
"title": {
"en": "Economy"
}
},
{
"id": "4",
"title": {
"en": "Protect"
}
}
],
"getable": true,
"setable": true,
"uiComponent": "picker"
}
Loading
Loading