Remote listener on ZNet Lite

Moderator: Telldus

Post Reply
eiaro
Posts: 5
Joined: Fri Mar 17, 2023 9:45 am

Remote listener on ZNet Lite

Post by eiaro »

Since I cannot poll sensor information on Live API often enough I'm making my own local listener for sensors. For the Tellstick Net it was pretty easy, but I struggle with the ZnetLite as there is no documentation (open source gone missing?).

Code: Select all

Detection done. 2 devices found.
[10.0.1.202]received : 9:zwaveinfoh7:versionD:Z-Wave 4.05 s
[10.0.1.201]received : 7:RawDatah5:class6:sensor8:protocol6:oregon5:modeliF824s4:datai19F0410894005Ess
This is what i receive. First message is the ZnetLite, second message is the Net. Guess there is more to be done to read Z-Wave sensors. Help please?
---
Jack of all trades
Telldus Net v17
Telldus Znet Lite v1.0.6
Telldus Duo
eiaro
Posts: 5
Joined: Fri Mar 17, 2023 9:45 am

Re: Remote listener on ZNet Lite

Post by eiaro »

5 days without any reply. Is Telldus dead?
---
Jack of all trades
Telldus Net v17
Telldus Znet Lite v1.0.6
Telldus Duo
eiaro
Posts: 5
Joined: Fri Mar 17, 2023 9:45 am

Re: Remote listener on ZNet Lite

Post by eiaro »

Moving forward while waiting for more info on Z Wave.

My listener now support both TellStick Net and TellStick Duo. Used the telldus-core format for debugging, but the data is contained in real objects. It is running on Python and rely only on libusb, so Windows and Linux can be supported without much trouble.

Code: Select all

Found device: TellStickNet, IP address 10.0.1.201, MAC address ACCA5400X1XX, activation code JXJXEXEX9X, firmware 17 
Found device: Telldus TellStick Duo with serial number X5X1XFXH
Decode data: class:sensor;protocol:oregon;model:0x2914;rainrate:0.0;raintotal:2895.092;data:0D00000008931133;id:13;
Decode data: class:sensor;protocol:oregon;model:0xF824;id:24;temperature:0.4;data:19F0400085074F;humidity:58.0;
Decode data: class:sensor;protocol:oregon;model:0xF824;id:24;temperature:0.4;data:19F0400085074F;humidity:58.0;
Decode data: class:sensor;protocol:oregon;model:0x2914;rainrate:0.0;raintotal:2895.092;data:0D00000008931133;id:13;
Decode data: class:sensor;protocol:oregon;model:0xF824;id:24;temperature:0.4;data:19F0400085074F;humidity:58.0;
Decode data: class:sensor;protocol:oregon;model:0xF824;id:24;temperature:0.4;data:19F0400085074F;humidity:58.0;
Decode data: class:sensor;protocol:oregon;model:0x2914;rainrate:0.0;raintotal:2895.092;data:0D00000008931133;id:13;
I have several sensors I need implemented in the firmware, but it seems the git server s down/malfunctioning when getting the submodules so I am unable to get started on that part of the project.
---
Jack of all trades
Telldus Net v17
Telldus Znet Lite v1.0.6
Telldus Duo
dna
Posts: 19
Joined: Fri Mar 17, 2023 9:45 am

Re: Remote listener on ZNet Lite

Post by dna »

Are you re-implementing protocol parsing for all sensors types?
I also felt that it was unneccessary to rely on polling the online Telldus Live service when all data from the Tellstick Net was broadcasted on my network anyway and started working on local access. Do you have a public source code repository somewhere and need help?
Post Reply