Skip to content

Home Automation

Overview

How do I run DietPi-Software and install optimised software items?

To install any of the DietPi optimised software items listed below run from the command line:

dietpi-software

Choose Browse Software and select one or more items. Finally select Install.
DietPi will do all the necessary steps to install and start these software items.

DietPi-Software menu screenshot

To see all the DietPi configurations options, review the DietPi Tools section.

Return to the Optimised Software list

Home Assistant

Home Assistant is an open-source home automation platform running on Python 3. Track and control all devices at home and automate control. Perfect to run on a Raspberry Pi.

Home Assistant pictogram

Long installation duration

The install process on slower SBC models can take a very long time, up to 2 hours, hence take a coffee, find some other activity and check back once in a while. It will show Installing Python-3.x.x… a very long time.
If you want to see processing details, run htop on a dedicated terminal or SSH session to watch Python build process live.

After dietpi-software has finished and the service starts the first time, please go through the following steps manually:

  • Run htop and wait until the CPU usage of the homeassistant processes goes down to nearly zero.
  • Run systemctl restart home-assistant
  • Run htop and wait until the CPU usage of the homeassistant processes goes down to nearly zero.
  • Open the HA web UI (see “Access to the web interface” tab). It will again install some Python modules on first access, which can again take a little while. Always check htop if you are unsure, which reveals any currently running Python/pip module install process.

Optional usage of the Home Assistant Community Store (HACS)

The Home Assistant Community Store (HACS) provides further community driven integrations, themes, etc.
To activate it, follow this guide: https://hacs.xyz/docs/configuration/basic/

The web interface is accessible via port 8123:

URL: http://<your.IP>:8123

The configuration files are stored system-wide within:
/mnt/dietpi_userdata/homeassistant

Please see the online documentation: https://home-assistant.io/docs/

Home Assistant is installed within a dedicated Python environment, powered by: pyenv/pyenv.
This places a standalone Python instance which runs completely independent from any other installed Python instance or modules. If you need to install additional Python modules into this pyenv environment, update Python itself or similar, you need to open a shell as user homeassistant and activate the pyenv environment:

sudo -u homeassistant bash
. /home/homeassistant/pyenv-activate.sh
pip3 install <module> # Or whichever install/update you need to do

IKEA TRÅDFRI: apt install autoconf

To view Home Assistant logs, run the following command from console:

journalctl -u home-assistant

To quickly update Home Assistant to the current version, run:

/home/homeassistant/homeassistant-update.sh

To update as well the whole pyenv Python version, reinstall Home Assistant:

dietpi-software reinstall 157

Official documentation: https://home-assistant.io/docs

Domoticz

Domoticz is a Home Automation System that lets you monitor and configure various devices like lights, switches, various sensors/meters like for temperature, rain, wind, UV radiation, electric fields, gas, water and much more. Notifications/Alerts can be sent to any mobile device.

Domoticz web interface screenshot

The web interface is accessible via port 8124 resp. 8424:

  • HTTP: http://<your.IP>:8124
  • HTTPS: https://<your.IP>:8424
  • Username: admin
  • Password: domoticz

Change default user and password

We recommend to create a new user with admin privileges via Setup -> Users and remove the default one, or at least change the default password.

journalctl -u domoticz

Use the following commands to control the Domoticz system service:

systemctl status domoticz
systemctl stop domoticz
systemctl start domoticz
systemctl restart domoticz

/opt/domoticz

/mnt/dietpi_userdata/domoticz


Official website: https://www.domoticz.com/ Official docs: https://www.domoticz.com/wiki/Main_Page Official forum: https://www.domoticz.com/forum/ Source code: domoticz/domoticz

TasmoAdmin

TasmoAdmin is an administrative website for devices flashed with Tasmota to be used for smart home systems.

Also installs:

  • Webserver (based on your preference)
  • PHP

TasmoAdmin logo

http://<your.IP>/tasmoadmin


Source code: reloxx13/TasmoAdmin
Credits: Implemented by @svh1985

openHAB

openHAB (open Home Automation Bus) is an open source home automation platform. The keywords are Bindings, Things, Channels, Items, Rules, Pages.

openHAB web interface screenshot

The web interface is accessible via port 8444:

  • URL: https://<your.IP>:8444
  • Username/Password: Are set at first web interface login
  • Install directory: /usr/share/openhab
  • Site configuration directory: /etc/openhab
  • Config file: /etc/default/openhab
  • Data directory: /var/lib/openhab

See also openHAB file locations.

journalctl -u openhab

Per default, HTTPS is active and HTTP is inactive (DietPi recommendation).
In cases, that HTTP shall be used, it can be activated in the file /etc/default/openhab by setting OPENHAB_HTTP_PORT= to your desired port.

Official website: https://www.openhab.org/
Official docs: https://www.openhab.org/docs/
Official community: https://community.openhab.org/

Homebridge

Homebridge allows you to integrate with smart home devices that do not natively support HomeKit. There are over 2,000 Homebridge plugins supporting thousands of different smart accessories.

Homebridge logo

The web interface is accessible via port 8581:

  • URL: https://<your.IP>:8581
  • Username/Password: Are set at first web interface login
  • Install directory: /opt/homebridge
  • Config, Log & Backup folder: /var/lib/homebridge
journalctl -u homebridge
cat /var/lib/homebridge/homebridge.log

Use the following commands to control the Homebridge system service:

hb-service status
hb-service start
hb-service stop
hb-service restart

Use the following command to update the bundled Node.js runtime (do not use sudo if running from the Homebridge UI Terminal):

sudo hb-service update-node 

Official website: https://homebridge.io/
Official docs: https://github.com/homebridge/homebridge/wiki

Return to the Optimised Software list