jooby-codec
    Preparing search index...

    Interface IParameterMtxDataTransmissionSchedule

    MTX Data transmission schedule.

    deviceParameters.MTX_DATA_TRANSMISSION_SCHEDULE = 14

    Applicable only for the MTX LoRaWAN module.

    Configures the schedule for different types of data transmissions.

    interface IParameterMtxDataTransmissionSchedule {
        schedules: {
            allowedHoursSchedule: Record<number, number>;
            dataType: TUint8;
            transmissionPeriod: TUint8;
        }[];
    }
    Index

    Properties

    Properties

    schedules: {
        allowedHoursSchedule: Record<number, number>;
        dataType: TUint8;
        transmissionPeriod: TUint8;
    }[]

    Contains an array of four transmission schedule configurations.

    Type Declaration

    • allowedHoursSchedule: Record<number, number>

      24-bit half hour schedule as record mapping hour to enabled state Format: {0: 1, 1: 1, 2: 0, ...} where key is hour (0-23) and value is enabled (1) or disabled (0)

    • dataType: TUint8

      Data type: 0 - half hour consumption, 1 - daily consumption, 2 - current data, 3 - module status

    • transmissionPeriod: TUint8

      Transmission period: transmissionPeriod * 600 + random value in range [0 - 1020] seconds