Skip to content

rosenloecher-it/enocean-mqtt-bridge

Repository files navigation

enocean-mqtt-bridge

Bridges and translates Enocean messages between a (USB) gateway to a MQTT broker for specific devices. Runs as Linux service (e.g. on Raspberry Pi).

The MQTT messages can be further processed with other smarthome systems (e.g. Openhab, Home Assistant, Loxone). These smarthome systems may support the listed devices directly. But decoupling the systems and use a separated MQTT message broker has some advantages. You can access the smarthome state via generic MQTT clients and don't have to use proprietary APIs. (Useful, when you want to write your own rules independently of a dedicated smarthome system.) In the end you could degrade your smarthome system to a pure GUI tool and switch easily between different ones.

Features

Release notes

See here

Requirements

  • Python 3.7+
  • Linux / Raspberry Pi

Startup

Get access to USB stick

# enable access to Enocean USB stick (alternative set user mode directly)
sudo usermod -a -G dialout $USER
# logout & login

Test working MQTT broker (here Mosquitto)

sudo apt-get install mosquitto-clients

# preprare credentials
SERVER="<your server>"

# start listener
mosquitto_sub -h $SERVER -p 1883 -i "client_sub" -d -t smarthome/#

# send single message
mosquitto_pub -h $SERVER -p 1883 -i "client_pub" -d -t smarthome/test -m "test_$(date)"

# just as info: clear retained messages
mosquitto_pub -h $SERVER -p 1883 -i "client_pub" -d -t smarthome/test -n -r -d

Python prerequisites

Python 3 ...

sudo apt-get install python3-dev python3-pip python3-venv python3-wheel -y

Prepare python environment

cd /opt
sudo mkdir enocean-mqtt-bridge
sudo chown pi:pi enocean-mqtt-bridge  # type in your user
git clone https://github.com/rosenloecher-it/enocean-mqtt-bridge enocean-mqtt-bridge

cd enocean-mqtt-bridge
python3 -m venv venv

# activate venv
source ./venv/bin/activate

# install required packages
pip install --upgrade -r requirements.txt
# or: pip install -r requirements-dev.txt

Configuration

# cd ... goto project dir
cp ./enocean-mqtt-bridge.yaml.sample ./enocean-mqtt-bridge.yaml

Edit your enocean-mqtt-bridge.yaml. See comments there.

Enocean Base ID

Your USB gateway has an internal Enocean ID (== Base ID). Enocean IDs are used to identify devices and link device to each other by a teaching in process. If you want to manage different devices by one USB gateway, then you have to use different Enocean sender IDs! Otherwise, multiple actors will react on each command, which might not what you want. (If you don't configure an Enocean sender ID, the Gateway Enocean Base ID is used at teaching in.)

For each control channel you have to define your own Enocean sender IDs. You can free choose the IDs, but have to stay within the range [Enocean Base ID + 1, Enocean Base ID + X]. The Enocean Base ID is different for every individual gateway. It gets logged out at service start in the log file or to the console. The possible count of individual sender IDs is supposed about 128.

Run

# see command line options
./enocean-mqtt-bridge.sh --help

# prepare your own config file based on ./enocean-mqtt-bridge.yaml.sample
./enocean-mqtt-bridge.sh -p -c ./enocean-mqtt-bridge.yaml

Register as systemd service

# prepare your own service script based on enocean-mqtt-bridge.service.sample
cp ./enocean-mqtt-bridge.service.sample ./enocean-mqtt-bridge.service

# edit/adapt pathes and user in enocean-mqtt-bridge.service
vi ./enocean-mqtt-bridge.service

# install service
sudo cp ./enocean-mqtt-bridge.service /etc/systemd/system/
# alternativ: sudo cp ./enocean-mqtt-bridge.service.sample /etc/systemd/system//enocean-mqtt-bridge.service
# after changes
sudo systemctl daemon-reload

# start service
sudo systemctl start enocean-mqtt-bridge

# check logs
journalctl -u enocean-mqtt-bridge
journalctl -u enocean-mqtt-bridge --no-pager --since "5 minutes ago"

# enable autostart at boot time
sudo systemctl enable enocean-mqtt-bridge.service

Troubleshooting

There happened some very quick connects/disconnects from/to MQTT broker (Mosquitto) on a Raspberry Pi. The connection was secured only by certificate. The problem went away after configuring username and password for the MQTT broker. On an Ubuntu system all was working fine even without user and password.

sudo service enocean-mqtt-bridge status

Mar 18 06:22:18 roofpi systemd[1]: enocean-mqtt-bridge.service: Current command vanished from the unit file, execution of the command list won't be resumed.

sudo systemctl disable enocean-mqtt-bridge.service
sudo rm /etc/systemd/system/enocean-mqtt-bridge.service
sudo systemctl daemon-reload

sudo cp ./enocean-mqtt-bridge.service /etc/systemd/system/
sudo rm /etc/systemd/system/enocean-mqtt-bridge.service
sudo service enocean-mqtt-bridge start
sudo systemctl enable enocean-mqtt-bridge.service

Related projects

Maintainer & License

MIT © Raul Rosenlöcher

The code is available at GitHub.

About

Bridges and translates Enocean messages between a (USB) gateway to a MQTT broker for specific devices.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published