Skip to content

Commit f2c9e60

Browse files
author
William Scanlon
committed
Updates for Wink in release 0.50
1 parent 7a4c9b2 commit f2c9e60

File tree

4 files changed

+39
-11
lines changed

4 files changed

+39
-11
lines changed

source/_components/fan.wink.markdown

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,12 @@ The requirement is that you have setup [Wink](/components/wink/).
2121

2222
### {% linkable_title Supported fan devices %}
2323

24-
- Gardinier
24+
- Home Decorator Wink-enabled Gardinier ceiling fan
25+
- Hampton Bay ceiling fan module
2526

2627

2728
<p class='note'>
2829
The above devices are confimed to work, but others may work as well.
2930
</p>
3031

32+

source/_components/light.wink.markdown

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,10 @@ The requirement is that you have setup [Wink](/components/wink/).
2525
- Hue
2626
- Lightify
2727
- GE link
28+
- Wink light groups (User created groups of lights)
2829

2930
<p class='note'>
3031
The above devices are confimed to work, but others may work as well.
3132
</p>
3233

34+

source/_components/switch.wink.markdown

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,6 @@ The requirement is that you have setup [Wink](/components/wink/).
2626
- Wink Relay load controlling switches
2727
- Rachio sprinkler controller (No Wink hub required)
2828
- iHome smart plug (No Wink hub required)
29+
- Wink switch groups (User created groups of switches)
30+
2931

source/_components/wink.markdown

Lines changed: 32 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ ha_release: pre 0.7
2020
Wink offers one, quick and simple way to connect people with the products they rely on every day in their home.
2121
</blockquote>
2222

23-
Home Assistant integrates with the Wink API and allows you to get the status and control connected switches, lights, locks, fan, climate devices, covers, and sensors.
23+
Home Assistant integrates with the Wink API and automatically sets up any switches, lights, locks, fans, climate devices, covers, sensors, and alarms.
2424

25-
Check the related componets pages for actual devices that are support.
25+
Check the related components pages for actual devices that are support.
2626

2727
Home Assistant offers multiple ways to authenticate to the Wink API. Each authentication method is described below.
2828

2929
### Authenticate using [developer.wink.com](https://developer.wink.com)
3030

3131

32-
This method will require you to setup a developer account with Wink. This process can take a few days to get approved, but is the recommanded form of authentication. If you would like to use Wink in Home Assistant while you wait, you can use the email and password authentication below.
32+
This method will require you to setup a developer account with Wink. This process can take a few days to get approved, but is the recommended form of authentication. If you would like to use Wink in Home Assistant while you wait, you can use the email and password authentication below.
3333

3434
This form of authentication doesn't require any settings in the configuration.yaml other than `wink:` this is because you will be guided through setup via the configurator on the frontend.
3535

@@ -68,23 +68,45 @@ wink:
6868
6969
Configuration variables:
7070
71-
- **email** (*Required if access token isn't provided*): Your Wink login email.
72-
- **password** (*Required if access token isn't provided*): Your Wink login password.
73-
- **client_id** (*Required if access token isn't provided*): Your provided Wink client_id.
74-
- **client_secret** (*Required if access token isn't provided*): Your provided Wink client_secret.
71+
- **email** (*Required for email/password auth or legacy oauth*): Your Wink login email.
72+
- **password** (*Required for email/password auth or legacy oauth*): Your Wink login password.
73+
- **client_id** (*Required for legacy oauth*): Your provided Wink client_id.
74+
- **client_secret** (*Required for legacy oauth*): Your provided Wink client_secret.
75+
- **local_control** (*Optional*): If set to `True` state changes for lights, locks, and switches will be issue to the local hub.
7576

76-
This will connect to the Wink API and automatically set up any switches, lights, locks, fans, climate devices, covers, sensors, and alarms.
77+
Local control:
78+
- Wink's local control API isn't officially documented and therefore could be broken by a hub update. For these reasons `local_control` defaults to `False`
79+
80+
- Using local control doesn't appear to make commands any quicker, but does function in an internet/Wink outage.
81+
82+
- Local control is also only available for the Wink hub v1 and v2, not the Wink relay.
83+
84+
- Local control isn't used during startup of Home Assistant, this means initial setup requires an active internet connection.
85+
86+
- Local control requests are first sent to the controlling hub. In the event that a request fails, that request will attempt to go online.
87+
88+
<p class='note'>
89+
It is possible for the hub to get into a bad state where it stops accepting local control request. If this happens you will notice requests taking significantly longer as they are redirected online. This doesn't happen often, but when it does, it appears to be resolved by rebooting the hub.
90+
91+
The following error will be logged in the event that the hub is rejecting local requests.
92+
93+
```
94+
Error sending local control request. Sending request online
95+
```
96+
97+
</p>
7798
7899
### {% linkable_title Service `refresh_state_from_wink` %}
79100
80101
The Wink component only obtains the device states from the Wink API once, during startup. All updates after that are pushed via a third party called PubNub. On rare occasions were an update isn't pushed device states can be out of sync.
81102
82-
You can use the service wink/refresh_state_from_wink to pull the most recent state from the Wink API for all devices.
103+
You can use the service wink/refresh_state_from_wink to pull the most recent state from the Wink API for all devices. If `local_control` is set to `True` states will be pulled from the devices controlling hub, not the online API.
83104
84105
### {% linkable_title Service `add_new_devices` %}
85106
86107
You can use the service wink/add_new_devices to pull any newly paired Wink devices to an already running instance of Home-Assistant. Any new devices will also be added if Home-Assistant is restarted.
87108
88109
<p class='note'>
89-
The Wink hub can only be accessed via the cloud. This means it requires an active internet connection and you will experience delays when controlling and updating devices (~3s).
110+
The Wink hub, by default can only be accessed via the cloud. This means it requires an active internet connection and you will experience delays when controlling and updating devices (~3s).
90111
</p>
112+

0 commit comments

Comments
 (0)