Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 1.08 KB

README.md

File metadata and controls

39 lines (28 loc) · 1.08 KB

homebridge-wink

Homebridge platform plugin for the Wink hub

This repository contains the Wink plugin for homebridge that was previously bundled in the main homebridge repository.

Installation

  1. Install homebridge using: npm install -g homebridge
  2. Install this plugin using: npm install -g homebridge-wink
  3. Update your configuration file. See sample-config.json snippet below.

Configuration

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)