uro / teltonika-fm-parser

Teltonika fm xxxx protocol encoder and decoder
The Unlicense
68 stars 45 forks source link

Understanding how this works #6

Closed DanJamesMills closed 3 years ago

DanJamesMills commented 3 years ago

Hi All,

I'm trying to figure out how all this works I have an FMT100, that I want to read the acl packet and parse it.

Does this library provide a TCP server for the fmt100 to connect to?

uro commented 3 years ago

Hello @DanJamesMills

This library decodes and encodes the data in order to talk to the teltonika devices.

The point was to keep it clean from the dependencies, so you can connect it to any server, and any model/database.

There is one simple example in the docs. It might be helpful

DanJamesMills commented 3 years ago

Hi @uro,

Many thanks for coming back to me I kind of figured it out, I've been using react/socket as my TCP server to received the data from the tracker and your library then to decode it, so far it seems to work fine. Great work!

uro commented 3 years ago

Happy to hear this.

Closing the issue for now.