DRAGINO Downlink Command: 0x01

The manual has the following
Format: Command Code (0x01) followed by 3 bytes time value.
If the downlink payload=0100003C, it means set the END Node’s Transmit Interval to 0x00003C=60(S), while type code is 01.
Example 1: Downlink Payload: 0100001E // Set Transmit Interval (TDC) = 30 seconds
Example 2: Downlink Payload: 0100003C // Set Transmit Interval (TDC) = 60 seconds

I want the commands for 600, 1200 and 1800 seconds

You just need to convert decimal to hex.

There are some examples:

  • 0x01XXYYZZ (0x01 + 3 bytes)
  • 30s => 0100001E
  • 60s => 0100003C
  • 10 minutes (600s) => 01000258
  • 30 minutes (1800s) 01000708 => 0x0708
  • 60 minutes (3600s) => 01000E10
1 Like

There are some more downlink examples for Dragino nodes.
Hope it helps.

1 Like