jooby-codec
    Preparing search index...

    Namespace getSpecialDay

    Uplink command to get special day information for the given tariff table.

    The corresponding downlink command: getSpecialDay.

    Supported in MTX1 and MTX3 devices.

    import * as getSpecialDay from 'jooby-codec/mtx1/commands/uplink/getSpecialDay.js';

    // special day response
    const bytes = [0x01, 0x09, 0x03, 0x00];

    // decoded payload
    const parameters = getSpecialDay.fromBytes(bytes);

    console.log(parameters);
    // output:
    {
    month: 1,
    date: 9,
    dayIndex: 3,
    isPeriodic: true
    }

    Command format documentation

    Variables

    accessLevel
    examples
    headerSize
    id
    isLoraOnly
    maxSize
    name

    Functions

    fromBytes
    toBytes