Program to read the states for several contacts from a Telenot alarm system using the GMS-Protcol.
To recognize the data there is a REGEG pattern for different firmwares. For 25.56 it's for Meldebreiche /^(.*)6846466873023a24000500020(.*?)16$/ and for Meldegruppen /^683e3e6873023224(.*?)16$/. Lately I updated to Firmware 33.68 where the REGEG string has changed for Meldebreiche /^(.*)6860606873025424000500020(.*?)16$/ and for Meldegruppen /^689393687302872400000001(.*?)16$/.
docker-compose up -d --build which makes setup easier. For setting up the env-variables, create a .env file and add the parameters.config.js fileAs the Telenot KNX Gateway is quite expensive, I started research for another solution. Some people already got a solution working for Loxone, which I took as a reference. Then I started to implement a solution in Python which was working but caused high CPU usage running as a docker container (see python branch). So I decided to implement it in Javascript using node.js. This is my first Javascript project so it might not follow best practices. I'm welcome for tips / best-practices.
You can either run the program using your local node.js version or run it using docker. For Docker you need to build the docker image using
docker build -t michelmu/telenot-nodejs .
afterwards you can start the container using
docker run --name telenot-nodejs --restart=always -d michelmu/telenot-nodejs
You can pass some config variables also as environment variables:
| PARAMETER | Description |
|---|---|
| MQTTHOST | name or ip for the mqtt broker |
| MQTTPORT | port for the mqtt broker |
| MQTTUSER | user for mqtt broker |
| MQTTPASSWORD | password for the mqtt user |
| TELNETHOST | name or ip for the socket adapter |
| TELNETPORT | port for the socket adapter |
| LOGLEVEL | Posible log levels are ["error", "warn", "info", "verbose", "debug", "silly"] |
| DISCOVER | Discover bit positions on change |
| PUBLISHTOPIC | The topic to get current item states |
This will result in:
docker run --name telenot-nodejs \
--restart=always \
-d \
-e MQTTHOST="mqtt://host.name" \
-e MQTTPORT="1883" \
-e MQTTUSER="mqtt" \
-e MQTTPASSWORD="secret"
-e TELNETHOST="192.168.1.22" \
-e TELNETPORT="1234" \
-e PUBLISHTOPIC="telenot/alarm/publish"
michelmu/telenot-nodejs
You can also get a prebuild docker image -- michelmu/telenot
To get the serial data to the ethernet bus I use the following converter: USR-TCP232-302 Tiny - RS232 to Ethernet TCP-IP-Server-Modul (ordered at Amazon). In my program I can connect to this module using a socket connection and get the data.
Content type
Image
Digest
sha256:c7b56c311…
Size
348.6 MB
Last updated
over 1 year ago
docker pull michelmu/telenot