search
HomeBackend DevelopmentPython TutorialBuilding a Smart Heater Controller with Python, Docker, and Bluetooth #1

Building a Smart Heater Controller with Python, Docker, and Bluetooth #1

Chapter 1: Getting Started

Why Build a Smart Heater Controller?

I recently set out to create a smart heating controller for my Terma MOA Blue heaters using Python, Docker, and Bluetooth Low Energy (BLE).

The Problem

There’s currently no native way to communicate between Home Assistant (HA) and my heaters.

The Goal

I needed precise control over the heaters for my seasonal rental property to:

  • Optimize energy consumption—Prevent guests from setting temperatures too high or leaving heaters on when they check out.
  • Remotely manage settings—Avoid costly heating bills without physically visiting the property.
  • Enable automation—Integrate with HA in the future for better scheduling and monitoring.

This post is the first chapter in a series where I’ll walk you through the process—from setting up the Raspberry Pi and Docker to writing Python scripts for direct Bluetooth control.


About the Terma MOA Blue Heaters

The Terma MOA Blue is a Bluetooth-enabled heating element designed for electric radiators and towel warmers.

Key features:

  • Multiple Modes:
    • Manual (Room Temperature)
    • Manual (Heating Element Temperature)
    • Schedules and Timers
  • Temperature Control:
    • Supports precision adjustments with 0.1°C steps.
  • Bluetooth Low Energy (BLE):
    • Allows remote control via mobile apps or custom integrations.

While these heaters work seamlessly with the manufacturer’s mobile app, I wanted more flexibility by integrating them directly into a custom Python/Docker setup.


Special Thanks to the Home Assistant Community

I want to give a big shoutout to the Home Assistant Community for laying the groundwork and sharing insights about connecting to these heaters using BLE.

Their discussions helped clarify how the Bluetooth characteristics are structured and inspired many of the techniques implemented in this project.


Project Overview

We'll cover:

  1. Setting up the Raspberry Pi with Docker.
  2. Writing a Python script using BLE to connect to the heater.
  3. Encoding and decoding temperature data and heater modes.
  4. Packaging the app in Docker for easy deployment.
  5. Planning for future features like multiple heater support and automation.

Setting Up the Raspberry Pi

I decided to use a Raspberry Pi as the central controller for this project. Here's how I set it up:

  1. Flash Raspberry Pi OS: Download and install the latest Raspberry Pi OS image.
  2. Enable SSH and Wi-Fi: Configure SSH access and Wi-Fi credentials during flashing to enable remote development.
  3. Install Docker: Docker makes deployment and testing easier.

Commands:

sudo apt update
sudo apt install -y docker.io
sudo usermod -aG docker $USER
  1. Test Docker Installation:
docker --version
docker run hello-world

This verifies Docker is installed and running properly.


Setting Up Git and Remote Access

To simplify updates to the code, I set up SSH keys and Git for remote access from my PC.

Key Steps:

  1. Generate an SSH key pair:
ssh-keygen -t ed25519 -C "your_email@example.com"
  1. Add the public key to GitHub.
  2. Clone the repository:
git clone git@github.com:<username>/<repo>.git
</repo></username>

Repository Link

You can check out the full source code in my GitHub repo:

? GitHub - ha-hudsonread-heater-control

Feel free to fork it, suggest improvements, or report any issues!


Controlling the Heater with Bluetooth

The Terma MOA Blue heater communicates over Bluetooth Low Energy (BLE), so I used the Bleak library in Python to handle the connection.

Key features implemented so far:

  • Read and Write Temperatures: Using UUID-based characteristics.
  • Mode Control: Switching between Off, Manual (Room Temp), and Manual (Heating Element Temp).
  • Dynamic Updates: Control temperatures without affecting modes.

Current State and Next Steps

Right now, the controller can:

  • Connect to the heater.
  • Read the current temperature and target temperature.
  • Switch modes and adjust temperatures independently.

Next Steps:

  • Add support for multiple heaters.
  • Enable automation via integration with Home Assistant or similar platforms.

Follow Along

Stay tuned for Chapter 2, where I’ll dive into the Python code, explain how BLE encoding and decoding works, and share insights from debugging Bluetooth connections.

We’ll also cover manual pairing and connection commands using bluetoothctl for anyone interested in a deeper look into BLE debugging.

Don’t forget to ⭐️ the GitHub repo and let me know in the comments what features you'd like to see added next!

The above is the detailed content of Building a Smart Heater Controller with Python, Docker, and Bluetooth #1. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How to Use Python to Find the Zipf Distribution of a Text FileHow to Use Python to Find the Zipf Distribution of a Text FileMar 05, 2025 am 09:58 AM

This tutorial demonstrates how to use Python to process the statistical concept of Zipf's law and demonstrates the efficiency of Python's reading and sorting large text files when processing the law. You may be wondering what the term Zipf distribution means. To understand this term, we first need to define Zipf's law. Don't worry, I'll try to simplify the instructions. Zipf's Law Zipf's law simply means: in a large natural language corpus, the most frequently occurring words appear about twice as frequently as the second frequent words, three times as the third frequent words, four times as the fourth frequent words, and so on. Let's look at an example. If you look at the Brown corpus in American English, you will notice that the most frequent word is "th

How Do I Use Beautiful Soup to Parse HTML?How Do I Use Beautiful Soup to Parse HTML?Mar 10, 2025 pm 06:54 PM

This article explains how to use Beautiful Soup, a Python library, to parse HTML. It details common methods like find(), find_all(), select(), and get_text() for data extraction, handling of diverse HTML structures and errors, and alternatives (Sel

Mathematical Modules in Python: StatisticsMathematical Modules in Python: StatisticsMar 09, 2025 am 11:40 AM

Python's statistics module provides powerful data statistical analysis capabilities to help us quickly understand the overall characteristics of data, such as biostatistics and business analysis. Instead of looking at data points one by one, just look at statistics such as mean or variance to discover trends and features in the original data that may be ignored, and compare large datasets more easily and effectively. This tutorial will explain how to calculate the mean and measure the degree of dispersion of the dataset. Unless otherwise stated, all functions in this module support the calculation of the mean() function instead of simply summing the average. Floating point numbers can also be used. import random import statistics from fracti

How to Perform Deep Learning with TensorFlow or PyTorch?How to Perform Deep Learning with TensorFlow or PyTorch?Mar 10, 2025 pm 06:52 PM

This article compares TensorFlow and PyTorch for deep learning. It details the steps involved: data preparation, model building, training, evaluation, and deployment. Key differences between the frameworks, particularly regarding computational grap

Serialization and Deserialization of Python Objects: Part 1Serialization and Deserialization of Python Objects: Part 1Mar 08, 2025 am 09:39 AM

Serialization and deserialization of Python objects are key aspects of any non-trivial program. If you save something to a Python file, you do object serialization and deserialization if you read the configuration file, or if you respond to an HTTP request. In a sense, serialization and deserialization are the most boring things in the world. Who cares about all these formats and protocols? You want to persist or stream some Python objects and retrieve them in full at a later time. This is a great way to see the world on a conceptual level. However, on a practical level, the serialization scheme, format or protocol you choose may determine the speed, security, freedom of maintenance status, and other aspects of the program

What are some popular Python libraries and their uses?What are some popular Python libraries and their uses?Mar 21, 2025 pm 06:46 PM

The article discusses popular Python libraries like NumPy, Pandas, Matplotlib, Scikit-learn, TensorFlow, Django, Flask, and Requests, detailing their uses in scientific computing, data analysis, visualization, machine learning, web development, and H

How to Create Command-Line Interfaces (CLIs) with Python?How to Create Command-Line Interfaces (CLIs) with Python?Mar 10, 2025 pm 06:48 PM

This article guides Python developers on building command-line interfaces (CLIs). It details using libraries like typer, click, and argparse, emphasizing input/output handling, and promoting user-friendly design patterns for improved CLI usability.

Scraping Webpages in Python With Beautiful Soup: Search and DOM ModificationScraping Webpages in Python With Beautiful Soup: Search and DOM ModificationMar 08, 2025 am 10:36 AM

This tutorial builds upon the previous introduction to Beautiful Soup, focusing on DOM manipulation beyond simple tree navigation. We'll explore efficient search methods and techniques for modifying HTML structure. One common DOM search method is ex

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft