-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #457 from athombv/feature/new-capabilities
Feature/new capabilities
- Loading branch information
Showing
129 changed files
with
6,375 additions
and
65 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
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
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,52 @@ | ||
{ | ||
"type": "boolean", | ||
"title": { | ||
"en": "Bin full alarm", | ||
"nl": "Afvalbak-vol-alarm" | ||
}, | ||
"desc": { | ||
"en": "True when the bin is full", | ||
"nl": "Gaat af als de afvalbak vol is" | ||
}, | ||
"insights": true, | ||
"insightsTitleTrue": { | ||
"en": "The bin was full", | ||
"nl": "De afvalbak was vol" | ||
}, | ||
"insightsTitleFalse": { | ||
"en": "The bin was not full", | ||
"nl": "De afvalbak was niet vol" | ||
}, | ||
"getable": true, | ||
"setable": false, | ||
"uiComponent": "sensor", | ||
"$flow": { | ||
"triggers": [ | ||
{ | ||
"id": "alarm_bin_full_true", | ||
"highlight": true, | ||
"title": { | ||
"en": "The bin is full", | ||
"nl": "De afvalbak is vol" | ||
} | ||
}, | ||
{ | ||
"id": "alarm_bin_full_false", | ||
"title": { | ||
"en": "The bin is no longer full", | ||
"nl": "De afvalbak is niet langer vol" | ||
} | ||
} | ||
], | ||
"conditions": [ | ||
{ | ||
"id": "alarm_bin_full", | ||
"title": { | ||
"en": "The bin is !{{full|not full}}", | ||
"nl": "The afvalbak is !{{vol|niet vol}}" | ||
} | ||
} | ||
] | ||
}, | ||
"minCompatibility": "12.1.0" | ||
} |
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,52 @@ | ||
{ | ||
"type": "boolean", | ||
"title": { | ||
"en": "Bin missing alarm", | ||
"nl": "Afvalbak-ontbreekt-alarm" | ||
}, | ||
"desc": { | ||
"en": "True when the bin is missing.", | ||
"nl": "Gaat af als de afvalbak ontbreekt." | ||
}, | ||
"insights": true, | ||
"insightsTitleTrue": { | ||
"en": "The bin was removed", | ||
"nl": "De afvalbak was verwijderd" | ||
}, | ||
"insightsTitleFalse": { | ||
"en": "The bin was placed", | ||
"nl": "De afvalbak was geplaatst" | ||
}, | ||
"getable": true, | ||
"setable": false, | ||
"uiComponent": "sensor", | ||
"$flow": { | ||
"triggers": [ | ||
{ | ||
"id": "alarm_bin_missing_true", | ||
"highlight": true, | ||
"title": { | ||
"en": "The bin was removed", | ||
"nl": "De afvalbak is verwijderd" | ||
} | ||
}, | ||
{ | ||
"id": "alarm_bin_missing_false", | ||
"title": { | ||
"en": "The bin was placed", | ||
"nl": "De afvalbak is geplaatst" | ||
} | ||
} | ||
], | ||
"conditions": [ | ||
{ | ||
"id": "alarm_bin_missing", | ||
"title": { | ||
"en": "The bin is !{{missing|present}}", | ||
"nl": "De afvalbak is !{{aanwezig|afwezig}}" | ||
} | ||
} | ||
] | ||
}, | ||
"minCompatibility": "12.1.0" | ||
} |
52 changes: 52 additions & 0 deletions
52
assets/capability/capabilities/alarm_cleaning_pad_missing.json
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,52 @@ | ||
{ | ||
"type": "boolean", | ||
"title": { | ||
"en": "Cleaning pad missing alarm", | ||
"nl": "Reinigingspad-ontbreekt-alarm" | ||
}, | ||
"desc": { | ||
"en": "True when the cleaning pad is missing.", | ||
"nl": "Gaat af als het reinigingspad ontbreekt." | ||
}, | ||
"insights": true, | ||
"insightsTitleTrue": { | ||
"en": "The cleaning pad was removed", | ||
"nl": "Het reinigingspad was verwijderd" | ||
}, | ||
"insightsTitleFalse": { | ||
"en": "The cleaning pad was placed", | ||
"nl": "Het reinigingspad was geplaatst" | ||
}, | ||
"getable": true, | ||
"setable": false, | ||
"uiComponent": "sensor", | ||
"$flow": { | ||
"triggers": [ | ||
{ | ||
"id": "alarm_pad_missing_true", | ||
"highlight": true, | ||
"title": { | ||
"en": "The cleaning pad was removed", | ||
"nl": "Het reinigingspad is verwijderd" | ||
} | ||
}, | ||
{ | ||
"id": "alarm_pad_missing_false", | ||
"title": { | ||
"en": "The cleaning pad was placed", | ||
"nl": "Het reinigingspad is geplaatst" | ||
} | ||
} | ||
], | ||
"conditions": [ | ||
{ | ||
"id": "alarm_pad_missing", | ||
"title": { | ||
"en": "The cleaning pad is !{{missing|present}}", | ||
"nl": "Het reigningingspad is !{{aanwezig|afwezig}}" | ||
} | ||
} | ||
] | ||
}, | ||
"minCompatibility": "12.1.0" | ||
} |
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
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.