Skip to content

Commit

Permalink
Add missing standard capabilities for store default notation
Browse files Browse the repository at this point in the history
  • Loading branch information
bobvandevijver committed Aug 22, 2024
1 parent 7239a9e commit c0f0350
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 6 deletions.
18 changes: 15 additions & 3 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -1670,7 +1670,12 @@
},
"drivers": [
{
"capabilities": [],
"capabilities": [
"alarm_motion",
"alarm_sound",
"alarm_crying_child",
"alarm_pet"
],
"connectivity": [
"cloud"
],
Expand Down Expand Up @@ -1934,7 +1939,10 @@
]
},
{
"capabilities": [],
"capabilities": [
"onoff",
"dim"
],
"connectivity": [
"cloud"
],
Expand Down Expand Up @@ -2237,7 +2245,11 @@
]
},
{
"capabilities": [],
"capabilities": [
"onoff",
"target_temperature",
"measure_temperature"
],
"connectivity": [
"cloud"
],
Expand Down
8 changes: 7 additions & 1 deletion drivers/camera/driver.compose.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,11 @@
"name": {
"en": "Camera",
"nl": "Camera"
}
},
"capabilities": [
"alarm_motion",
"alarm_sound",
"alarm_crying_child",
"alarm_pet"
]
}
6 changes: 5 additions & 1 deletion drivers/dimmer/driver.compose.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,9 @@
"name": {
"en": "Dimmer",
"nl": "Dimmer"
}
},
"capabilities": [
"onoff",
"dim"
]
}
7 changes: 6 additions & 1 deletion drivers/heater/driver.compose.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,10 @@
"name": {
"en": "Heater",
"nl": "Verwarming"
}
},
"capabilities": [
"onoff",
"target_temperature",
"measure_temperature"
]
}

0 comments on commit c0f0350

Please sign in to comment.