A Home Assistant component for controlling LG HVAC devices via their SmartThinQ platform, based on WideQ.
Here's how to use this:
-
Install WideQ by typing something like:
$ git clone https://github.com/sampsyo/wideq.git $ cd wideq $ pip3 install -e . -
Clone this repository into your
~/.homeassistantdirectory undercustom_componentsand name itclimate. For example, you might do something like this:$ cd ~/.homeassistant $ mkdir custom_components $ cd custom_components $ git clone https://github.com/sampsyo/hass-smartthinq.git climate -
Authenticate with the SmartThinQ service to get a refresh token by running the WideQ example script. (Eventually, I would like to add a feature to the Home Assistant component that can let you log in through a UI, but I haven't gotten there yet.) Run this in the
wideqdirectory:$ python3 example.pyThe script will ask you to open a browser, log in, and then paste the URL you're redirected to. It will then write a JSON file called
wideq_state.json.Look inside this file for a key called
"refresh_token"and copy the value. -
Add a stanza to your Home Assistant
configuration.yamllike this:climate: - platform: smartthinq refresh_token: YOUR_TOKEN_HEREStart up Home Assistant and hope for the best.
This is by Adrian Sampson. The license is MIT.