teltonika-data-receiver
v1.3.0
Published
Receive GPS data from a Teltonika (RUT955) device
Downloads
9
Readme
Teltonika RUT955 data receiver
This is a (simple) data receiver for a Teltonika RUT955 (and probably more of them if they use the same data format). It supports a TCP server right now and it'll decode the AVL packets for you. It'll decode all of the specific elements of the packet except for parsing the values of the IO elements (as of right now), instead it'll give you a Buffer with the raw data in it. It is released and licensed under the Apache License 2.0.
Getting started
To get started I recommend looking at the examples which includes using the tiny event based server I made or making your own using the parsers.
- Fork this repo
- Decide what kind of server you want
- Play with it on your own machine
- Host it somewhere (it should be able to run on an instance or serverless)
Have a question?
Shoot me a question on my twitter @eXeDK.
Using the server
Two ways to do it as I see it.
- Host it on a normal server
- Put it in some cluster of your choice
- Go serverless!
Inspiration
A lot of this code is written just using the RUT955 protocols page on Teltonika's wiki.
I've found some related projects around the internet. I'll try to list them here for your enjoyment:
- Teltonika 1556 data parser in Java
- FMXXXX Parser in PHP
- Teltonika FM Parser in PHP
All of them are good in their own way. I might have gotten some ideas from some of them.