From d8c0c9f56f0c5b444f8caeb088fec21a030560a3 Mon Sep 17 00:00:00 2001 From: Roy Duineveld Date: Fri, 26 Apr 2019 15:29:01 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=BA=20Home=20Assistant=200.92=20suppor?= =?UTF-8?q?t?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 11 +++++++++-- __init__.py | 0 manifest.json | 8 ++++++++ 3 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 __init__.py create mode 100644 manifest.json diff --git a/README.md b/README.md index 6967cab..db54099 100644 --- a/README.md +++ b/README.md @@ -8,14 +8,21 @@ Intergas InComfort integration with Home Assistant. 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 diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..958212a --- /dev/null +++ b/manifest.json @@ -0,0 +1,8 @@ +{ + "domain": "InComfort", + "name": "InComfort", + "documentation": "https://github.com/royduin/home-assistant-incomfort", + "dependencies": [], + "codeowners": [], + "requirements": [] +}