A simple go util to publish the state of a sielaff vending machine to mqtt - for integration into a home assistant installation.
Tested and used in the temporärhaus with a Sielaff (Robimat) GF SiLine M on firmware 0.13.6.
Compilation:
GOARCH=arm GOARM=7 GOOS=linux go build main.go
Run on the vending machine:
MQTT_BROKER=tcp://192.168.0.10:1883 MQTT_USERNAME=matemat MQTT_PASSWORD=mqttpassword ./main
Currently detecting changes in the following dbus signals:
signal path=/; interface=com.sielaff.siline.payment; member=vendEnabled(Vending Enabled)signal path=/; interface=com.sielaff.siline.hmi; member=serviceMenuActivated(Service Menu Active)signal path=/MachineControl; interface=com.sielaff.siline.machine.MachineControl; member=sensorValue(Cooling Temperature)
Publishes the following mqtt topics:
homeassistant/binary_sensor/matematvend/config- home assistant mqtt discoverysielaff2mqtt/matematvend/availabilitysielaff2mqtt/matematvend/statehomeassistant/binary_sensor/matematservicemenu/config- home assistant mqtt discoverysielaff2mqtt/matematservicemenu/availabilitysielaff2mqtt/matematservicemenu/statehomeassistant/sensor/matematcoolingtemperature/config- home assistant mqtt discoverysielaff2mqtt/matematcoolingtemperature/availabilitysielaff2mqtt/matematcoolingtemperature/state
You can change sielaff2mqtt by setting the MQTT_PREFIX environment variable or using the --prefix flag.
- Add more sensors
- Make mqtt device name configurable
- Implement device part of home assistant mqtt discovery
Run dbus-monitor --system on your vending machine and look out for the signal lines.