Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/petergerdes/homebridge-anna
https://github.com/petergerdes/homebridge-anna
homebridge homebridge-plugin thermostat
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/petergerdes/homebridge-anna
- Owner: petergerdes
- License: mit
- Created: 2019-01-30T15:08:17.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-11T13:01:46.000Z (over 4 years ago)
- Last Synced: 2024-09-28T19:21:11.480Z (4 months ago)
- Topics: homebridge, homebridge-plugin, thermostat
- Language: JavaScript
- Size: 17.6 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# homebridge-anna
Supports the Plugwise Anna thermostat (Up to legacy version 1.8) on the HomeBridge Platform. If you are on a higher version than v1.8, this plugin will not work!
# Installation
1. Install homebridge using: npm install -g homebridge
2. Install this plugin using: npm install -g homebridge-anna
3. Update your configuration file. See bellow for a sample.# Configuration
Configuration sample:
```
{
"bridge": {
...
},"description": "...",
"accessories": [
{
"accessory": "Thermostat",
"name": "Thermostaat",
"ip": "192.168.1.123",
"password": "pass",
"maxTemp": "26", #in celsius
"minTemp": "15", #in celsius
"interval": "3000" #in milliseconds, 3 seconds by default
}
],"platforms":[]
}
```