Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 988 Bytes

README.md

File metadata and controls

41 lines (31 loc) · 988 Bytes

climate_master

Home Assistant Climate Master

Groups multiple climate devices to a single entity and create a Dummy Climate that acts as a master

How to install:

HACS

Add this repo (https://github.com/blademckain/climate_master) to the HACS store and install from there.

local install

Put in "custom_components" folder located in hass.io inside the config folder. (The 2 .py file must be config/custom_components/climate_master)

Sample Configuration

Put this inside configuration.yaml in config folder of hass.io

climate:
  - platform: climate_group
    name: 'Climate Friendly Name'
    temperature_unit: C  # default to celsius, 'C' or 'F'
    entities:
    - climate.clima1
    - climate.clima2
    - climate.clima3
    - climate.heater
    - climate.termostate
	preset:
	   - name: home
	     target_temp_low
		 target_temp_high
	   - name: sleep
	     target_temp_low
		 target_temp_high

(use the entities you want to have in your climate_group)