Skip to main content

A collection of libraries to handle communication and interpretation of MotoTRBO Data Services (ARS, TMS, LRRP, Job Tickets, etc)

Project description

trbo-data-svc

This is a collection of multiple different libraries and programs that interface with MotoTRBO digital radios.

Currently supported:

  • ARS
  • TMS
  • LRRP (50%)

In the works:

  • Job Tickets
  • Impres OTA Battery Management (low priority, weird format)

Basic Layout

Most of the basic data services can be set up as such:

from TrboDataSvc import ars
def callback(rid, data):
    print("Got a message from radio id {}".format(rid))
    return True
listener = ars.ARS()
listener.register_callback(callback)
listener.listen()

That's all you need!

Further Documentation

The callbacks

The callback function definition should be in the following format:

def callback_name(rid, data)

Obviously the name can be whatever you want, but the arguments must be rid and data, in that order. The type of data and what it passes will differ between the different functions. It can be either an int, string, or dictionary.

Additionally, the callback must return True on successful processing and False on unsuccessful processing. Returning true means an ACK gets sent to the radio when necessary. Examples of failed processing might be an exception, upstream server offline, etc.

Listen function

The listen function creates a separate process to process the incoming data. This creates a new Process for each listener. This shouldn't be a huge deal but on embedded systems it might be something to consider as a new Process creates an entirely new memory space.

Other tools

The util class offers a few utilities such as id2ip and ip2id that convert the OTA IP to a radio ID. In case you are not familiar, the DMR radio ID gets mapped to an IP address for data transmission over the air. These functions let you easily convert between OTA IPs and RIDs.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

TrboDataSvc-0.0.8.tar.gz (8.6 kB view hashes)

Uploaded Source

Built Distribution

TrboDataSvc-0.0.8-py3-none-any.whl (10.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page