-
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 #8 from Thorarin/feat/sdk-v2
Homey SDK 2.0 and Strips Drip/Comfort support
- Loading branch information
Showing
299 changed files
with
23,184 additions
and
940 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,6 @@ | ||
root = true | ||
|
||
[*.{js,json}] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 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
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,55 @@ | ||
{ | ||
"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.0.0", | ||
"compatibility": ">=1.5.0", | ||
"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]" | ||
} | ||
] | ||
}, | ||
"drivers": [] | ||
} |
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,5 +1,16 @@ | ||
"use strict"; | ||
'use strict'; | ||
|
||
module.exports.init = function() { | ||
Homey.log("com.sensative running..."); | ||
} | ||
const Homey = require('homey'); | ||
const Log = require('homey-log').Log; | ||
|
||
class SensativeZwave extends Homey.App { | ||
|
||
onInit() { | ||
|
||
this.log('Sensative Z-wave app is running...'); | ||
|
||
} | ||
|
||
} | ||
|
||
module.exports = SensativeZwave; |
Oops, something went wrong.