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

Climate Home Assistant component for Heatzy Pilot

License

Notifications You must be signed in to change notification settings

Devotics/heatzy-home-hassistant

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

heatzy-home-assistant

🚨 NOTICE: heatzy-home-assistant is no longer maintained and stopped working with versions 2021 of Home Assistant (Learn more). As an alternative, you can try hass-heatzy that is actively maintained and is kept up to date with Home Assistant.

Home Assistant integration for the Heatzy Pilot electric heater controller.

You can find some extra information on how to integrate this component in your Home Assistant installation here.

Installation

To register the heatzy component to Home Assistant, copy the heatzy folder from this repository to your Home Assistant custom_components folder.

You can find installation instructions for specific Home Assistant versions below.

Home Assistant version Heatzy component version
0.110 and higher master
0.96 to 0.109 3.1.0
0.89 to 0.95 2.0.1
0.88 and lower 1.1.1

Installation for Home Assistant 0.110 and higher

The following commands assume that your Home Assistant folder is located in ~/.homeassistant/custom_components:

# Create custom_components folder
mkdir -p ~/.homeassistant/custom_components
# Move to the custom_components folder
cd ~/.homeassistant/custom_components
# Fetch this repo and extract it
curl -L https://github.com/gitapi/repos/Devotics/heatzy-home-hassistant/tarball/master | tar -xz
# Copy heatzy folder
cp -rl Devotics-heatzy-home-hassistant-*/heatzy .
# Clean up
rm -rf Devotics-heatzy-home-hassistant-*

Installation for Home Assistant 0.96 to 0.109

Instructions

Version 4.0.0 of this component removes some deprecation notices introduced by this pull request. You can still install a compatible version for Home Assistant versions 0.96 to 0.109 with the following instructions:

# Create custom_components folder
mkdir -p ~/.homeassistant/custom_components
# Move to the custom_components folder
cd ~/.homeassistant/custom_components
# Fetch this repo and extract it
curl -L https://github.com/gitapi/repos/Devotics/heatzy-home-hassistant/tarball/3.1.0 | tar -xz
# Copy heatzy folder
cp -rl Devotics-heatzy-home-hassistant-*/heatzy .
# Clean up
rm -rf Devotics-heatzy-home-hassistant-*

Installation for Home Assistant 0.89 to 0.95

Instructions

Version 3.0.0 of this component introduces breaking changes related to the Climate Cleanup. You can still install a compatible version for Home Assistant versions 0.89 to 0.95 with the following instructions:

# Create custom_components folder
mkdir -p ~/.homeassistant/custom_components
# Move to the custom_components folder
cd ~/.homeassistant/custom_components
# Fetch this repo and extract it
curl -L https://github.com/gitapi/repos/Devotics/heatzy-home-hassistant/tarball/2.0.1 | tar -xz
# Copy heatzy folder
cp -rl Devotics-heatzy-home-hassistant-*/heatzy .
# Clean up
rm -rf Devotics-heatzy-home-hassistant-*

Installation for Home Assistant 0.88 and lower

Instructions

Version 2.0.0 of this component introduces breaking changes related to The Great Migration ™. You can still install a compatible version on Home Assistant 0.88 and lower with the following instructions:

# Create custom_components folder
mkdir -p ~/.homeassistant/custom_components
# Move to the custom_components folder
cd ~/.homeassistant/custom_components
# Fetch this repo and extract it
curl -L https://github.com/gitapi/repos/Devotics/heatzy-home-hassistant/tarball/1.1.1 | tar -xz
# Copy climate folder
cp -rl Devotics-heatzy-home-hassistant-*/climate .
# Clean up
rm -rf Devotics-heatzy-home-hassistant-*

Usage

Once installed, add the following lines to your configuration.yaml:

climate:
  - platform: heatzy
    username: "<your heatzy email>"
    password: "<your heatzy password>"

This configuration will allow the component to query the Heatzy API to retrieve and control your devices status.

License

MIT