(MQTT)
 
(No difference)

Latest revision as of 04:44, 19 February 2020

BrandMeister DMR Server has capabilities to send and receive telemetry messages of Hytera and Motorola radios.

Telemetry service allows:

  • Remote check of input. Input can be active and inactive. Radio can send event of state change.
  • Remote control of output. Output can be switched on (set), switched off (clear), toggled and pulsed
  • Remote control by pressing buttons on the radio.

BrandMeister can do control via MQTT API, transmit incoming events (input state change, remote control) to user application via MQTT, transmit events to APRS.

Constants

  • States
    • Unknown - 00
    • Inactive - 10
    • Active - 11
  • Actions
    • None - 00
    • Clear - 20
    • Set - 21
    • Toggle - 22
    • Pulse - 23

Reception

APRS

  1. R5DK>APRS,DMR*,qAS,RK3FWD-10:T#000,023,000,000,000,000,00000000

MQTT

  1. Master/2501/Service
  2.  
  3. {
  4. "Event" : "Telemetry-Report",
  5. "SourceID" : 1107164,
  6. "VIO1" : 023,
  7. "VIO2" : 000,
  8. "VIO3" : 000,
  9. "VIO4" : 000,
  10. "VIO5" : 000,
  11. "Text" : ""
  12. }

Transmission

Query telemetry of terminal

  1. mosquitto_pub -t Master/2501/Outgoing/Command/250999/2503002 -m 'query telemetry'
  2. # Network ID-| Source ID-| |-Destination ID

Send telemetry command

  1. mosquitto_pub -t Master/2501/Outgoing/Command/250999/2503002 -m 'send telemetry command 0 0 0 0 0'
  2. # Network ID-| Source ID-| |-Destination ID |*******|- Command Set:
  3. # 0 = None, 20 = Clear, 21 = Set, 22 = Toggle, 23 = Pulse

BrandMeister DMR Server has capabilities to send and receive telemetry messages of Hytera and Motorola radios.

Telemetry service allows:

BrandMeister can do control via MQTT API, transmit incoming events (input state change, remote control) to user application via MQTT, transmit events to APRS.

Constants[edit]

Reception[edit]

APRS[edit]

  1. R5DK>APRS,DMR*,qAS,RK3FWD-10:T#000,023,000,000,000,000,00000000

MQTT[edit]

  1. Master/2501/Service
  2.  
  3. {
  4. "Event" : "Telemetry-Report",
  5. "SourceID" : 1107164,
  6. "VIO1" : 023,
  7. "VIO2" : 000,
  8. "VIO3" : 000,
  9. "VIO4" : 000,
  10. "VIO5" : 000,
  11. "Text" : ""
  12. }

Transmission[edit]

Query telemetry of terminal[edit]

  1. mosquitto_pub -t Master/2501/Outgoing/Command/250999/2503002 -m 'query telemetry'
  2. # Network ID-| Source ID-| |-Destination ID

Send telemetry command[edit]

  1. mosquitto_pub -t Master/2501/Outgoing/Command/250999/2503002 -m 'send telemetry command 0 0 0 0 0'
  2. # Network ID-| Source ID-| |-Destination ID |*******|- Command Set:
  3. # 0 = None, 20 = Clear, 21 = Set, 22 = Toggle, 23 = Pulse