-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
71 changed files
with
6,840 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"extends": "athom/homey-app" | ||
} |
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,3 @@ | ||
/env.json | ||
/node_modules/ | ||
/.homeybuild/ |
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,32 @@ | ||
{ | ||
"id": "com.electrolux-aeg.ocp", | ||
"version": "1.0.0", | ||
"compatibility": ">=5.0.0", | ||
"sdk": 3, | ||
"platforms": [ | ||
"local" | ||
], | ||
"name": { | ||
"en": "Electrolux AEG" | ||
}, | ||
"description": { | ||
"en": "Add support for Electrolux AEG Appliances" | ||
}, | ||
"brandColor": "#d31937", | ||
"category": [ | ||
"appliances" | ||
], | ||
"permissions": [], | ||
"images": { | ||
"small": "/assets/images/small.png", | ||
"large": "/assets/images/large.png" | ||
}, | ||
"author": { | ||
"name": "Grant Slender", | ||
"email": "[email protected]" | ||
}, | ||
"source": "https://github.com/gslender/com.electrolux-aeg.ocp", | ||
"bugs": { | ||
"url": "https://github.com/gslender/com.electrolux-aeg.ocp/issues" | ||
} | ||
} |
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,13 @@ | ||
{ | ||
"type": "number", | ||
"uiComponent": "slider", | ||
"title": { | ||
"en": "Fan speed" | ||
}, | ||
"min": 0, | ||
"max": 100, | ||
"step": 10, | ||
"getable": true, | ||
"setable": true | ||
} | ||
|
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,9 @@ | ||
{ | ||
"type": "boolean", | ||
"title": { | ||
"en": "Ionizer active" | ||
}, | ||
"getable": true, | ||
"setable": true | ||
} | ||
|
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,9 @@ | ||
{ | ||
"type": "boolean", | ||
"title": { | ||
"en": "Indicator light" | ||
}, | ||
"getable": true, | ||
"setable": true | ||
} | ||
|
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,9 @@ | ||
{ | ||
"type": "boolean", | ||
"title": { | ||
"en": "Lock controls" | ||
}, | ||
"getable": true, | ||
"setable": true | ||
} | ||
|
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,24 @@ | ||
{ | ||
"type": "enum", | ||
"uiComponent": "picker", | ||
"title": { | ||
"en": "Mode" | ||
}, | ||
"values": [ | ||
{ | ||
"id": "manual", | ||
"title": { | ||
"en": "Manual" | ||
} | ||
}, | ||
{ | ||
"id": "smart", | ||
"title": { | ||
"en": "Smart" | ||
} | ||
} | ||
], | ||
"getable": true, | ||
"setable": true | ||
} | ||
|
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,39 @@ | ||
{ | ||
"type": "number", | ||
"title": { | ||
"en": "Filter life" | ||
}, | ||
"units": { | ||
"en": "%" | ||
}, | ||
"insights": true, | ||
"min": 0, | ||
"max": 100, | ||
"desc": { | ||
"en": "Filter life in percentage (%)" | ||
}, | ||
"chartType": "spline", | ||
"decimals": 2, | ||
"getable": true, | ||
"setable": false, | ||
"uiComponent": "sensor", | ||
"icon": "/assets/icons/measure_FILTER.svg", | ||
"$flow": { | ||
"triggers": [ | ||
{ | ||
"id": "measure_FILTER_changed", | ||
"title": { | ||
"en": "The filter life changed" | ||
}, | ||
"tokens": [ | ||
{ | ||
"name": "$id", | ||
"title": "$title", | ||
"type": "$type", | ||
"example": 99 | ||
} | ||
] | ||
} | ||
] | ||
} | ||
} |
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,9 @@ | ||
{ | ||
"type": "string", | ||
"title": { | ||
"en": "Appliance Mode" | ||
}, | ||
"getable": true, | ||
"setable": false, | ||
"icon": "/assets/gear.svg" | ||
} |
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,9 @@ | ||
{ | ||
"type": "string", | ||
"title": { | ||
"en": "Appliance State" | ||
}, | ||
"getable": true, | ||
"setable": false, | ||
"icon": "/assets/gear.svg" | ||
} |
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,9 @@ | ||
{ | ||
"type": "string", | ||
"title": { | ||
"en": "Cycle Phase" | ||
}, | ||
"getable": true, | ||
"setable": false, | ||
"icon": "/assets/rotate.svg" | ||
} |
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,9 @@ | ||
{ | ||
"type": "string", | ||
"title": { | ||
"en": "Door State" | ||
}, | ||
"getable": true, | ||
"setable": false, | ||
"icon": "/assets/door.svg" | ||
} |
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,43 @@ | ||
{ | ||
"type": "number", | ||
"title": { | ||
"en": "PM1", | ||
"nl": "PM1", | ||
"de": "PM1" | ||
}, | ||
"units": { | ||
"en": "ppm" | ||
}, | ||
"insights": true, | ||
"desc": { | ||
"en": "Atmospheric Particulate Matter (μg/m3)", | ||
"nl": "Deeltjesvormige luchtverontreiniging (μg/m3)", | ||
"de": "Atmosphärischer Feinstaub (μg/m3)" | ||
}, | ||
"chartType": "spline", | ||
"decimals": 2, | ||
"getable": true, | ||
"setable": false, | ||
"uiComponent": "sensor", | ||
"icon": "/assets/icons/measure_PM1.svg", | ||
"$flow": { | ||
"triggers": [ | ||
{ | ||
"id": "measure_pm1_changed", | ||
"title": { | ||
"en": "The PM1 value has changed", | ||
"nl": "De PM1 waarde is veranderd", | ||
"de": "Der PM1-Wert hat sich geändert" | ||
}, | ||
"tokens": [ | ||
{ | ||
"name": "$id", | ||
"title": "$title", | ||
"type": "$type", | ||
"example": 2 | ||
} | ||
] | ||
} | ||
] | ||
} | ||
} |
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,43 @@ | ||
{ | ||
"type": "number", | ||
"title": { | ||
"en": "PM10", | ||
"nl": "PM10", | ||
"de": "PM10" | ||
}, | ||
"units": { | ||
"en": "ppm" | ||
}, | ||
"insights": true, | ||
"desc": { | ||
"en": "Atmospheric Particulate Matter (μg/m3)", | ||
"nl": "Deeltjesvormige luchtverontreiniging (μg/m3)", | ||
"de": "Atmosphärischer Feinstaub (μg/m3)" | ||
}, | ||
"chartType": "spline", | ||
"decimals": 2, | ||
"getable": true, | ||
"setable": false, | ||
"uiComponent": "sensor", | ||
"icon": "/assets/icons/measure_PM10.svg", | ||
"$flow": { | ||
"triggers": [ | ||
{ | ||
"id": "measure_pm10_changed", | ||
"title": { | ||
"en": "The PM10 value has changed", | ||
"nl": "De PM10 waarde is veranderd", | ||
"de": "Der PM10-Wert hat sich geändert" | ||
}, | ||
"tokens": [ | ||
{ | ||
"name": "$id", | ||
"title": "$title", | ||
"type": "$type", | ||
"example": 2 | ||
} | ||
] | ||
} | ||
] | ||
} | ||
} |
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,9 @@ | ||
{ | ||
"type": "string", | ||
"title": { | ||
"en": "Start Time" | ||
}, | ||
"getable": true, | ||
"setable": false, | ||
"icon": "/assets/clock.svg" | ||
} |
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,9 @@ | ||
{ | ||
"type": "string", | ||
"title": { | ||
"en": "Stop Time" | ||
}, | ||
"getable": true, | ||
"setable": false, | ||
"icon": "/assets/clock.svg" | ||
} |
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,9 @@ | ||
{ | ||
"type": "string", | ||
"title": { | ||
"en": "Time To End" | ||
}, | ||
"getable": true, | ||
"setable": false, | ||
"icon": "/assets/clock.svg" | ||
} |
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,41 @@ | ||
{ | ||
"type": "number", | ||
"title": { | ||
"en": "VOC", | ||
"nl": "VOC", | ||
"de": "VOC" | ||
}, | ||
"units": { | ||
"en": "ppb" | ||
}, | ||
"insights": true, | ||
"desc": { | ||
"en": "Volatile Organic Compound (ppb)" | ||
}, | ||
"chartType": "spline", | ||
"decimals": 2, | ||
"getable": true, | ||
"setable": false, | ||
"uiComponent": "sensor", | ||
"icon": "/assets/icons/measure_VOC.svg", | ||
"$flow": { | ||
"triggers": [ | ||
{ | ||
"id": "measure_voc_changed", | ||
"title": { | ||
"en": "The VOC value has changed", | ||
"nl": "De VOC waarde is veranderd", | ||
"de": "Der VOC-Wert hat sich geändert" | ||
}, | ||
"tokens": [ | ||
{ | ||
"name": "$id", | ||
"title": "$title", | ||
"type": "$type", | ||
"example": 2 | ||
} | ||
] | ||
} | ||
] | ||
} | ||
} |
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,15 @@ | ||
{ | ||
"title": { | ||
"en": "Disable indicator light" | ||
}, | ||
"titleFormatted": { | ||
"en": "Disable indicator light" | ||
}, | ||
"args": [ | ||
{ | ||
"type": "device", | ||
"name": "device", | ||
"filter": "driver_id=electrolux-pure-a9" | ||
} | ||
] | ||
} |
Oops, something went wrong.