Skip to content

IngoS11/ha-schluter

Repository files navigation

hacs_badge ha-schluter Maintenance

About

This Home Assistant integration is a work-in-progress alternative to the default Schluter integration and is currently in alpha stage. Over the standard integration, it is making use of the Integration Setup and uses the async Python libraries. Like the standard Schluter Integration, this integration is currently also only supporting the DIETRA HEAT E Wifi Thermostat sold in North America. Schluter Thermostats sold in Europe seem to use a different cloud backend.

Getting Started

Prerequisites

HACS Installation

This integration overwrites the standard Schluter integration and is therefore not accepted into the default HACS repository. To use the integration with HACS you have to add this repository. Under HACS select Integrations in the overflow menu (three dots in the upper right corner) select Custom repositories paste the URL, https://github.com/IngoS11/ha-schluter, into the repository field and select Integration as the Category.

Manual Installation

  1. Open the directory with your Home Assistant configuration (where you find configuration.yaml, usually ~/.homeassistant/).
  2. If you do not have a custom_components directory there, you need to create it.

Git clone method

This is a preferred method of manual installation, because it allows you to keep the git functionality, allowing you to manually install updates just by running git pull origin main from the created directory.

Now you can clone the repository somewhere else and symlink it to Home Assistant like so:

  1. Clone the repo.
git clone https://github.com/ingos11/ha-schluter.git schluter
  1. Create the symlink to schluter in the configuration directory. If you have non standard directory for configuration, use it instead.
ln -s ha-schluter/custom_components/schluter ~/.homeassistant/custom_components/schluter

Copy method

  1. Download ZIP with the code.
  2. Unpack it.
  3. Copy the custom_components/schluter/ from the unpacked archive to custom_components in your Home Assistant configuration directory.

Integration Setup

  • Browse to your Home Assistant instance.
  • In the sidebar click on Configuration.
  • From the configuration menu select: Integrations.
  • In the bottom right, click on the Add Integration button.
  • From the list, search and select “Schluter”.
  • Follow the instruction on screen to complete the set up.
  • After completing, the Schluter integration will be immediately available for use.

Development

The development of the HA Schluter custom integration is based on the dev container template built by Joakim Sorensen.

Known Issues

The 2023.7.3 version of Homeassistant runs into an issue when starting up with the mobile app. Once the devcontainer is set up run

pip install git+https://github.com/boto/botocore

as described in home-assistant/core#95192