-
Notifications
You must be signed in to change notification settings - Fork 9
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 #26 from Thorarin/feat/dynamic-capabilities
Release 2.2.0
- Loading branch information
Showing
295 changed files
with
1,388 additions
and
22,833 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 |
---|---|---|
@@ -1,4 +1,7 @@ | ||
/node_modules/homey-zwavedriver/.npmignore | ||
/env.json | ||
/.vscode | ||
/*.png | ||
/node_modules/ | ||
|
||
# Using Homey Compose | ||
/app.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,65 @@ | ||
{ | ||
"id": "com.sensative", | ||
"sdk": 2, | ||
"name": { | ||
"en": "Sensative", | ||
"nl": "Sensative" | ||
}, | ||
"description": { | ||
"en": "Sensative Z-Wave Strips support for Homey", | ||
"nl": "Sensative Z-Wave Strips ondersteuning voor Homey" | ||
}, | ||
"category": [ | ||
"appliances", | ||
"security", | ||
"climate" | ||
], | ||
"images": { | ||
"large": "/assets/images/large.png", | ||
"small": "/assets/images/small.png" | ||
}, | ||
"version": "2.2.0", | ||
"compatibility": ">=1.5.6", | ||
"tags": { | ||
"en": [ | ||
"security", | ||
"alarm", | ||
"contact", | ||
"window", | ||
"door", | ||
"temperature", | ||
"humidity" | ||
], | ||
"nl": [ | ||
"beveiliging", | ||
"alarm", | ||
"contact", | ||
"raam", | ||
"deur", | ||
"temperatuur", | ||
"vochtigheid" | ||
] | ||
}, | ||
"author": { | ||
"name": "Marcel Veldhuizen", | ||
"email": "[email protected]" | ||
}, | ||
"contributors": { | ||
"developers": [ | ||
{ | ||
"name": "Marcel Veldhuizen", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Marco Ruiter", | ||
"email": "[email protected]" | ||
} | ||
] | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/Thorarin/com.sensative/issues" | ||
}, | ||
"source": "https://github.com/Thorarin/com.sensative", | ||
"homepage": "https://homey.app", | ||
"support": "mailto:[email protected]" | ||
} |
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 @@ | ||
{ | ||
"id": "maintenance_actions", | ||
"label": { | ||
"en": "Maintenance actions", | ||
"nl": "Maintenance actions" | ||
}, | ||
"hint": { | ||
"en": "Disabling this hides maintenance actions on this device. Maintenance actions are known to confuse HomeyKit, classifying the sensor as a switch.", | ||
"nl": "Wanneer uitgeschakeld worden de onderhoudsacties voor dit apparaat verborgen. Onderhoudsacties verwarren HomeyKit, waardoor de sensor als schakelaar geclassificeerd wordt." | ||
}, | ||
"type": "checkbox", | ||
"value": 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,13 @@ | ||
{ | ||
"id": "tamper_alarm", | ||
"label": { | ||
"en": "Tamper alarm", | ||
"nl": "Sabotage-alarm" | ||
}, | ||
"hint": { | ||
"en": "Used to show or hide the tamper alarm capability.", | ||
"nl": "Hiermee kan de sabotage-alarmfunctie getoond of verborgen worden." | ||
}, | ||
"type": "checkbox", | ||
"value": 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 |
---|---|---|
@@ -1,3 +1,33 @@ | ||
/node_modules/homey-meshdriver/examples | ||
# Exclude development assets | ||
*.psd | ||
/*.png | ||
/drivers/**/*.compose.json | ||
/package.json | ||
/package-lock.json | ||
|
||
# Strip down homey-meshdriver to bare minimum for supported devices | ||
/node_modules/homey-meshdriver/assets | ||
/node_modules/homey-meshdriver/examples | ||
/node_modules/homey-meshdriver/jsdoc.json | ||
/node_modules/homey-meshdriver/Gruntfile.js | ||
/node_modules/homey-meshdriver/README.md | ||
/node_modules/homey-meshdriver/lib/util | ||
/node_modules/homey-meshdriver/lib/zigbee | ||
/node_modules/homey-meshdriver/lib/zwave/ZwaveLightDevice.js | ||
/node_modules/homey-meshdriver/lib/zwave/ZwaveLockDevice.js | ||
/node_modules/homey-meshdriver/lib/zwave/ZwaveMeteringDevice.js | ||
/node_modules/homey-meshdriver/lib/zwave/system/capabilities/* | ||
!/node_modules/homey-meshdriver/lib/zwave/system/capabilities/alarm_contact | ||
!/node_modules/homey-meshdriver/lib/zwave/system/capabilities/alarm_heat | ||
!/node_modules/homey-meshdriver/lib/zwave/system/capabilities/alarm_tamper | ||
!/node_modules/homey-meshdriver/lib/zwave/system/capabilities/alarm_water | ||
!/node_modules/homey-meshdriver/lib/zwave/system/capabilities/measure_battery | ||
!/node_modules/homey-meshdriver/lib/zwave/system/capabilities/measure_humidity | ||
!/node_modules/homey-meshdriver/lib/zwave/system/capabilities/measure_luminance | ||
!/node_modules/homey-meshdriver/lib/zwave/system/capabilities/measure_temperature | ||
|
||
# Remove modules only required by removed homey-meshdriver functionality | ||
/node_modules/color-space | ||
/node_modules/almost-equal | ||
/node_modules/hsluv | ||
/node_modules/mumath |
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,5 @@ | ||
[ | ||
{ | ||
"id": "compose" | ||
} | ||
] |
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.