Downlink command to get active energy (A+) in half hours by date.
A+
Supported in MTX1 and MTX3 devices.
import * as getHalfHourDemand from 'jooby-codec/mtx1/commands/downlink/getHalfHourDemand.js';const parameters = { date: { year: 24, month: 3, date: 22 }};const bytes = getHalfHourDemand.toBytes(parameters);// command binary representationconsole.log(bytes);// output:[21, 3, 24, 3, 22] Copy
import * as getHalfHourDemand from 'jooby-codec/mtx1/commands/downlink/getHalfHourDemand.js';const parameters = { date: { year: 24, month: 3, date: 22 }};const bytes = getHalfHourDemand.toBytes(parameters);// command binary representationconsole.log(bytes);// output:[21, 3, 24, 3, 22]
Command format documentation
Downlink command to get active energy (
A+
) in half hours by date.Supported in MTX1 and MTX3 devices.
Example
Command format documentation