Smart Home
We started simple to automate the house: a couple of Ikea lights, two motorized shutters Several years on, it was time to connect these different systems and add more smartness.
I set up a Raspberry Pi 4 running hassos OS to manage the connected systems in our current home. It consumes just 4W, so that saves a lot compared to running it on a desktop (iMac 24/7 with Oracle VirtualBox consumed 36 W = 312 kW/year).
HomeAssistant (HA) allows manual and automated operation of different smart lights, blinds etc. all in one place with all smartness running locally without relying on cloud services.
Standard supported integrations I use:
- Ikea Tradfri lighting, smart sockets and blinds
- Tuya Smart Zigbee (also for OEM like Lidl)
- PowerView Hunter Douglas/Luxaflex curtains & blinds
- SolarEdge PV panel convertor
- Tado smart thermostats
- Siemens/Bosch Home Connect (washing machine alerts)
- MyUplink, the current protocol for our Nibe F1255 heat pump
HA Community Plug-ins allow additional systems to tie in via HACS (Home Assistant Community Store) and even by adding custom repositories from GitHub in HACS, e.g.
- myenergi (Zappi EV charger and energy monitor)
- Gardena garden sprinkler timers
- Casambi Bluetooth (not using the Casambi API/server/gateway)
HomeAssistant supports so called Add-Ons that provide extra functions on the Pi4 server. I use:
- File Editor (to edit config files in the iOS app, or remotely via)
- Advanced SSH & Web Terminal
- Mosquito Broker (for MQTT messaging on the local Wi-Fi network)
- Samba NAS (to access a shared folder on the RPi)
- InfluxDB (to collect long term energy statistics)
MQTT is used to connect independent devices to HomeAssistant, for instance:
- nibepi (to control our Nibe F1255 heat pump over Modbus, running on a separate Raspberry PiZero)
Energy Monitoring
By combining the utility meter readings with the SolarEdge PV generation and myenergi Zappi EV charger figures, I am able to separate the EV charging from the electricity consumed in the house. And by adding two extra CT clamps in the main switch board I got a grip on our bigger electric appliances, such as the electric stove.
Custom tools
I coded some extra hardware to customise exactly what I was looking for. Using MicroPython and ESPHome this is in fact not too difficult. I encourage you to try this out instead of making do with all the closed-source hardware.
Smart Oven Display
I happened to forget shutting down the stove a couple of times, as there is no indicator light or buzzer on the AGA Cooker. That meant 1-2 kWh lost in space! To fix this, I connected a Raspberry Pico microcontroller with a 1.3" OLED screen to HomeAssistant via MQTT/Wi-Fi. As soon as the sensor in the main switch board signals that the stove is on, it sends an MQTT message which wakes up my ovenside display, showing which hub or oven is on. A timer starts preheating timing of either a cooking hub (15 mins) or one of the ovens (60 mins). After the set period we receive an alert on our phone telling us "Oven is Ready". And after 2 hours, I am reminded if I still mean to have the stove on. Energy spill contained!

See this blog post for details.
Smart Fan
In an energy efficient house air exchange must be managed, and excessive ventilation would lead to either too hot or too cold rooms. Relying only on natural ventilation proved not to fuction, either for lack of pressure/wind or excessive noise from traffic waking us up at night.
Using the CO2 sensor already in place to drive the fan speed, I programmed a small ESP32 Atom Lite controller to extract just the required amount of air from our bedroom, using a variable speed fan mounted outside the room.

See this blog post for details.
When you shop for a new gadget, take note of the supported protocol, for example HomeKit, Zigbee/Tuya, Matter or Thread. I would not recommend OEM or private protocols als you might end up with a dedicated bridge for each. And they are always on, consuming a couple of Watts.