-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit 9299281
Showing
1 changed file
with
35 additions
and
0 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,35 @@ | ||
<p align="center"> | ||
<a href="https://github.com/homebridge/homebridge"><img src="https://raw.githubusercontent.com/homebridge/branding/master/logos/homebridge-color-round-stylized.png" height="140"></a> | ||
</p> | ||
|
||
<span align="center"> | ||
|
||
# homebridge-co | ||
|
||
|
||
</span> | ||
|
||
## Description | ||
|
||
This plugin shows a CO air quality accessory that will trigger when then threshold is met - Carbon monoxide ( CO ) NOT carbon dioxide( Co2 ) | ||
|
||
Example config: | ||
``` | ||
{ | ||
"accessories": [ | ||
{ | ||
"accessory": "COSensor", | ||
"name": "CO Sensor", | ||
"url": "http://10.1.1.145", | ||
"threshold": 50, | ||
"pollingInterval": 60, | ||
"coLevelPath": "co_level" | ||
} | ||
] | ||
} | ||
``` | ||
|
||
|
||
response must be JSON default path is {"co_level": xx.xx} | ||
|