Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
🔺 Home Assistant 0.92 support
Browse files Browse the repository at this point in the history
  • Loading branch information
royduin committed Apr 26, 2019
1 parent 70b4c94 commit d8c0c9f
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,21 @@ Intergas InComfort integration with Home Assistant.
<img src="https://raw.githubusercontent.com/royduin/home-assistant-incomfort/master/popup.png" width="250px" alt="Popup">

## Installation
Put the `climate.py` file in `custom_components/InComfort` within your configuration directory. On Ubuntu for example: `~/.homeassistant/custom_components/InComfort`. After that configure it in the `configuration.yaml` file:
Put these files:
- `climate.py`
- `__init__.py`
- `manifest.json`
In `custom_components/InComfort` within your configuration directory. On Ubuntu for example: `~/.homeassistant/custom_components/InComfort`. After that configure it in the `configuration.yaml` file:
```
climate:
- platform: InComfort
name: Woonkamer
host: 192.168.1.123
```
And change the `name` and `host` as needed. Some newer firmwares require authentication, this can be configured by adding `auth: true`. If the username and password are anything other than `admin` and `intergas` you can specify them like:
And change the `name` and `host` as needed.

## Authentication
Some newer firmwares require authentication, this can be configured by adding `auth: true`. If the username and password are anything other than `admin` and `intergas` you can specify them like:
```
climate:
- platform: InComfort
Expand Down
Empty file added __init__.py
Empty file.
8 changes: 8 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"domain": "InComfort",
"name": "InComfort",
"documentation": "https://github.com/royduin/home-assistant-incomfort",
"dependencies": [],
"codeowners": [],
"requirements": []
}

0 comments on commit d8c0c9f

Please sign in to comment.