Homebridge platform plugin for the Wink hub
This repository contains the Wink plugin for homebridge that was previously bundled in the main homebridge
repository.
- Install homebridge using: npm install -g homebridge
- Install this plugin using: npm install -g homebridge-wink
- Update your configuration file. See sample-config.json snippet below.
Configuration sample:
"platforms": [
{
"platform": "Wink",
"name": "Wink",
"client_id": "YOUR_WINK_API_CLIENT_ID",
"client_secret": "YOUR_WINK_API_CLIENT_SECRET",
"username": "[email protected]",
"password": "WINK_PASSWORD"
}
],
Fields:
- "platform": Must always be "Nest" (required)
- "name": Can be anything (required)
- "client_id": Wink API client id, must be obtained from [email protected] (required)
- "client_secret": Wink API client id, must be obtained from [email protected] (required)
- "username": Wink login username, same as app (required)
- "password": Wink login password, same as app (required)