generated from homebridge/homebridge-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added documentation, test and created changelog entry
- Loading branch information
1 parent
bf4b05f
commit a117ab6
Showing
5 changed files
with
87 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -138,4 +138,5 @@ inspectionProfiles/ | |
# Other things | ||
reports/ | ||
_*.json | ||
**/_*.ts | ||
**/_*.ts | ||
.DS_Store |
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
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,36 @@ | ||
[ | ||
{ | ||
"name": "battery", | ||
"label": "Battery", | ||
"access": 1, | ||
"type": "numeric", | ||
"property": "battery", | ||
"description": "Remaining battery in %, can take up to 24 hours before reported", | ||
"category": "diagnostic", | ||
"unit": "%", | ||
"value_max": 100, | ||
"value_min": 0 | ||
}, | ||
{ | ||
"name": "moving", | ||
"label": "Moving", | ||
"access": 1, | ||
"type": "binary", | ||
"property": "moving", | ||
"description": "Indicates whether the device is moving", | ||
"value_on": true, | ||
"value_off": false | ||
}, | ||
{ | ||
"name": "linkquality", | ||
"label": "Linkquality", | ||
"access": 1, | ||
"type": "numeric", | ||
"property": "linkquality", | ||
"description": "Link quality (signal strength)", | ||
"category": "diagnostic", | ||
"unit": "lqi", | ||
"value_max": 255, | ||
"value_min": 0 | ||
} | ||
] |