Tellstick Net / Telldus Live

One big shortcoming with the Telldus Live integration in HA is that the Telldus Live API only allows polling. This doesn’t fit well with for example door sensors, where it is desirable to get updates as soon as any event or state change occurs.

One way to get around this limitation is to use the poorly documented functionality of the Tellstick device to make it send any received events as UDP packets on the local network.

Rather than integrating this in the tellduslive component in HA, I decided to develop this as a standalone component, communicating bidirectionally with HA using MQTT, i.e. a Tellstick Net ⟷ MQTT ⟷ HA gateway.

I have only tested this for Tellstick Net for now, and only with the setup (sensors etc) I have access to, but it works fine in my setup with Tellstick Net in two different locations, and two gateways communicating with a MQTT server (VPS), feeding config/events into HA.

The source is available here: https://github.com/molobrakos/tellsticknet

I run it like: tellsticknet/script/tellsticknet mqtt -vv
With MQTT credentials in $HOME/.config/mosquitto_pub (same config file as the mosquitto client) and devices configuration in $HOME/.tellsticknet.conf

2 Likes

Can this be used with hass.io and if it can, is there an installation guide for dummies?

1 Like

Wondering the same as Jonnvoll, can it be used with hass.io? Thank you for sharing your knowledge.

1 Like

also is it possible to include instante status on dimmers, switches. I put the telldus ZNET a little on hold since it has slow feedback when changes devices locally

I am not very familiar with hass.io, so I don’t know if it can be used with it. I would guess that it would work, but you would have to start this process yourself somewhere.

Yes, by running this code and feeding events into Home Assistant using MQTT, you will get instant status updates for dimmers and switches as well as sensors (this was the main reason for developing this in the first place).

great thanks. I will give it a try on HASS when I have som spare time:P

Hi Steinis,

Did you ever get to test this on hass.io ?