Home Assistant: The Smart Home Saga Begins!

Home-Assistant-The-Smart-Home-Saga-Begins

📝 Requirement List:

  1. 🍓 Raspberry Pi (used 3B+ version for this tutorial)
  2. 💿 Raspbian OS

Bonus Magic Tutorial

🔮 If you want to know how to install Raspbian on Pi without a monitor, please follow this magic tutorial – The Invisible Setup: Installing Raspbian on Raspberry Pi Without a Monitor! 🧙‍♂️

Enjoy your Pi adventure! 🥧

Part 1: The Magical Installation 🧙‍♂️

Welcome to the world of smart homes! Ready to turn your home into a futuristic paradise? Let’s kick things off with Home Assistant and Postgres.

But first, a quick disclaimer:

1
If you start talking to your appliances, we’re not responsible for any strange looks from your family members.

Step 1: Summon Docker on Raspberry Pi 🐳

Imagine Docker as the magical suitcase from Mary Poppins.

It can fit everything you need in one place!

Here’s how to get Docker onto your Raspberry Pi:

  1. Open your terminal.
  2. Run these magical incantations:
    1
    2
    3
    curl -fsSL https://get.docker.com -o get-docker.sh
    sudo sh get-docker.sh
    sudo usermod -aG docker muadib

Once Docker is installed, grab your Raspberry Pi and do a little celebratory dance.

You’ve just completed the first step!

Step 2: Docker Compose - The Fellowship Leader 🧙‍♂️

Docker Compose is like the director of an orchestra, making sure all your containers play in harmony.

Create a file named docker-compose.yml and add the following lines to it:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
version: '3'
services:
homeassistant:
container_name: homeassistant
image: "ghcr.io/home-assistant/home-assistant:stable"
volumes:
- /home/muadib/home/hass:/config
- /etc/localtime:/etc/localtime:ro
restart: unless-stopped
network_mode: host
depends_on:
- mosquitto
- postgres
postgres:
image: postgres:16.3-alpine3.20
restart: unless-stopped
ports:
- 5432:5432
volumes:
- /home/muadib/home/postgres:/var/lib/postgresql/data
- /etc/localtime:/etc/localtime:ro
environment:
- POSTGRES_DB=<db_name>
- POSTGRES_USER=<user>
- POSTGRES_PASSWORD=<password>

Save it, then run this in your terminal:

1
docker-compose up

Now, take a break. Grab a coffee, pet your cat, or just stare lovingly at your Raspberry Pi as it works its magic.

Configuration Explained 🧩

Now that you’ve got Home Assistant and Postgres running, it’s time to configure them.

1
docker-compose stop

This is where the real fun begins. Here’s a breakdown:

Database Configuration 📚

In your configuration.yaml file, add:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
recorder:
auto_repack: true
purge_keep_days: 7
db_url: !secret psql_string
db_retry_wait: 15 # Wait 15 seconds before retrying
include:
domains:
- person
entity_globs:
- sensor.speedtest*
- sensor.ram_use_pct*
- sensor.cpu_load*
history:
logbook:

What’s Happening Here?

  • auto_repack: Optimizes the database automatically.
  • purge_keep_days: Keeps only the last 7 days of data. Because who needs to remember what their thermostat was set to three months ago?
  • db_url: This is where the magic happens. The connection string for your Postgres database (we’ll configure this in a bit).

Secrets Configuration 🕵️‍♂️

To keep your secrets safe (because, let’s face it, we all have them), create a secrets.yaml file and add:

1
psql_string: "postgresql://<user>:<password>@192.168.0.XXX/<db_name>"

Replace PASSWORD and 192.168.0.XXX with your actual password and IP address.

Enable Integrations from the Home Assistant UI

Run:

1
docker-compose up -d

Now, let’s make Home Assistant actually do something!

homeassistant home

Confgure it and enjoy your journey!!

homeassistant home

Enable some first sensors like:

  1. Speedtest Integration: Navigate to the integrations page and enable the Speedtest integration. No more guessing if your internet is slow because of the weather or because your neighbor is downloading every season of their favorite show.

homeassistant home

  1. System Monitoring: Enable system monitoring metrics by going to config/integrations/integration/systemmonitor. Pick the metrics you care about and add them to your dashboard.

homeassistant home

Here’s a sneak peek at what your first dashboard might look like:

Dashboard System monitor

If you’re interested in learning how to create the dashboard or theme, please leave a comment on this blog.

Coming Up Next

In the next tutorial, we’ll dive into capturing data from RTL weather stations and sensors for humidity and temperature. We’ll also explore frequencies like 400 MHz and 800 MHz.

So stay tuned, because your smart home journey is just beginning!

Until next time, happy automating! 🚀


Feel free to share your progress and any questions in the comments below.

Let’s make our homes smarter together!