I’m currently working on setting up a DIY heating automation system using Home Assistant, and I wanted to share my experiences and ask for some advice from the community.
I’m running Home Assistant on a Raspberry Pi 3, and so far, it’s been a great experience managing my lights and media players. My latest project is to integrate a heating system using Aqara Temperature and Humidity Sensors along with an LC Technology 4-channel Relay board. The goal is to create a simple automation that turns the heating on and off based on temperature readings and user input.
I’ve successfully set up the Aqara Sensor using a Conbee Hub (DeConz addon), and it’s working perfectly. However, I’m facing some challenges when trying to configure the thermostat functionality in Lovelace. Every time I attempt to set up a Thermostat Card, I receive an error message stating, ‘Specify an entity from within the climate domain.’
Here’s the configuration I’m using:
yaml
- badges:
cards:- entity: light.front_lights
name: Front Lights
type: light - entity: media_player.googlehome4501
type: media-control - entity: sensor.living_room_temperature_3
name: Living Room Thermostat
type: thermostat
elements:- type: custom:thrmostat-card
entity: sensor.living_room_temperature_3
style: left: 63% top: 89% width: 15%
ambient_temperature: sensor.average_living_room_temperature_3
highlight_tap: true
no_card: true
title: Test
- type: custom:thrmostat-card
- entity: light.front_lights
This has led me to question whether the Aqara Sensor is suitable for this setup. I’m still working on getting the LC Tech relay board to function properly, but I’m hopeful that with some adjustments, I can get everything up and running smoothly.
If anyone has experience with similar setups or can provide some guidance on resolving the thermostat configuration issue, I would greatly appreciate it! The community’s support has been invaluable to me so far, and I’m eager to learn from others’ experiences.