Uplink command to get special day information for the given tariff table.
The corresponding downlink command: getSpecialDay.
getSpecialDay
Supported in MTX1 and MTX3 devices.
import * as getSpecialDay from 'jooby-codec/mtx1/commands/uplink/getSpecialDay.js';// special day responseconst bytes = [0x01, 0x09, 0x03, 0x00];// decoded payloadconst parameters = getSpecialDay.fromBytes(bytes);console.log(parameters);// output:{ month: 1, date: 9, dayIndex: 3, isPeriodic: true} Copy
import * as getSpecialDay from 'jooby-codec/mtx1/commands/uplink/getSpecialDay.js';// special day responseconst bytes = [0x01, 0x09, 0x03, 0x00];// decoded payloadconst parameters = getSpecialDay.fromBytes(bytes);console.log(parameters);// output:{ month: 1, date: 9, dayIndex: 3, isPeriodic: true}
Command format documentation
Uplink command to get special day information for the given tariff table.
The corresponding downlink command:
getSpecialDay
.Supported in MTX1 and MTX3 devices.
Example: create command instance from command body hex dump
Command format documentation