Field Guide · concept

Also known as: smart home

Home automation is the control and coordination of household devices — lights, locks, thermostats, sensors — so they run on schedules or react to conditions instead of being operated by hand.1

SBC hub rules + state sensor sensor light lock climate sensor coordinated locally — works with the internet down
A home-automation hub — typically a small always-on SBC — sits at the centre holding the rules and state, and reaches out to lights, locks, climate, and sensors, keeping the house coordinated even when the internet link is down.

Overview

A typical setup ties together many Internet of Things devices through a central hub that holds the rules and state. That hub is often a small, always-on single-board computer such as a Raspberry Pi running software like Home Assistant — cheap, low-power, and able to keep everything working locally even when the internet is down. Because the logic lives on the hub rather than in the cloud, a rule like “turn on the porch light at sunset” keeps firing regardless of whether a vendor’s servers are reachable.

The devices themselves speak a patchwork of protocols — Wi-Fi, Zigbee, Z-Wave, Bluetooth, plain GPIO wiring — and part of the hub’s job is to translate between them and present one consistent view. Keeping that bridge on local hardware is also what makes a smart home resilient and private: sensor readings and door-lock commands never have to leave the house.

Where it fits

Home automation is one of the most common reasons people pick up their first SBC, because the workload — talking to sensors and devices over GPIO, Wi-Fi, and other links, around the clock, at a few watts — fits the board’s strengths exactly. It is also a gateway to running local machine learning: pairing the hub with edge AI lets it recognise faces at the door or sounds in a room without uploading anything.

That same always-on, low-power profile makes such a board a natural host for other field roles. The Pi already sitting in a closet running the smart home is the same kind of box that can run GopherTrunk as a quiet capture node beside an antenna — a headless Linux machine that just needs to stay up and do one job well.

Sources

  1. Home automation — Wikipedia, on automating and coordinating household devices. 

See also