@hoobs/wink
Version:
Wink integration for HOOBS
118 lines (88 loc) • 1.6 kB
Markdown
Example `config.json`
```json
{
"platforms": [
{
"platform": "Wink",
"name": "Wink",
"client_id": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
"client_secret": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
}
]
}
```
Required. Must always be "Wink".
Required. Recommended value: "Wink".
Your Client ID obtained from [developer.wink.com](https://developer.wink.com)
Your Client Secret obtained from [developer.wink.com](https://developer.wink.com)
Allows you to hide groups of devices.
```json
{
"hide_groups": [
"air_conditioner",
"binary_switch",
"camera",
"door_bell",
"fan",
"garage_door",
"light_bulb",
"lock",
"propane_tank",
"sensor_pod",
"shade",
"siren",
"smoke_detector",
"thermostat"
]
}
```
Allows you to hide devices by their ID.
```json
{
"hide_ids": [
217402,
365820
]
}
```
Allows you to expose devices (binary_switch/light_bulb) as fans, instead of light bulbs.
```json
{
"fan_ids": [
248563
]
}
```
Allows you to expose devices (binary_switch/light_bulb) as outlets, instead of light bulbs.
```json
{
"outlet_ids": [
248563
]
}
```
Allows you to expose devices (binary_switch/light_bulb) as switches, instead of light bulbs.
```json
{
"switch_ids": [
248563
]
}
```
Default to true. Enable/disable local control.
```json
{
"direct_access": false
}
```