This is a plugin for homebridge. It's a fully-working implementation of a netatmo weather station.
It now also include a partial implementation for the netatmo thermostat
- Install homebridge using: npm install -g homebridge
- Install this plugin using: npm install -g homebridge-netatmo
- Update your configuration file. See sample-config.json in this repository for a sample.
Configuration sample:
"platforms": [
{
"platform": "netatmo",
"name": "netatmo platform",
"ttl": 5,
"auth": {
"client_id": "XXXXX Create at https://dev.netatmo.com/",
"client_secret": "XXXXX Create at https://dev.netatmo.com/",
"username": "your netatmo username",
"password": "your netatmo password"
}
}
],
To retrieve client id and secret please follow following guide:
- Register at http://dev.netatmo.com as a developer
- After successful registration create your own app by using the menu entry "CREATE AN APP"
- On the following page, enter a name for your app. Any name can be chosen. All other fields of the form (like callback url, etc.) can be left blank.
- After successfully submitting the form the overview page of your app should show client id and secret.