Skip to content

This is the code I use to monitor my heatpump and publish its values via MQTT.

Notifications You must be signed in to change notification settings

Marcussjogren/IVT_Rego_290AW

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 

Repository files navigation

IVT_Rego_290AW

This is the code I use to monitor my heatpump and publish its values via MQTT. In my case, I have Home Assistant which is listening to the MQTT topic and receiving the data.

Hardware:

I have connected a H1-interface from Husdata (www.husdata.se) to a Raspberry Pi Zero Wireless, which runs the code.

Service

The service is installed as /lib/systemd/system/heatMon.service and requires "screen" to be installed. In this way, I can always attach to my service and monitor what it does. I connect to the service with "screen -r heatMon"

[Unit]

Description=HomeMate heatMon

After=multi-user.target

[Service]

Type=forking

User=pi

ExecStart=/usr/bin/screen -dmS heatMon /user/bin/python3 /home/pi/Python/heatMon/heatMon.py

[Install]

WantedBy=multi-user.target

About

This is the code I use to monitor my heatpump and publish its values via MQTT.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages