@bacnet-js/device
    Preparing search index...

    Interface BDIntegerValueOpts

    interface BDIntegerValueOpts {
        covIncrement?: number;
        description?: string;
        maxPresentValue?: number;
        minPresentValue?: number;
        name: string;
        presentValue?: number;
        unit: EngineeringUnits;
        writable?: boolean;
        writableOutOfService?: boolean;
    }

    Hierarchy

    • Omit<BDNumericValueOpts, "maxPresentValue" | "minPresentValue" | "presentValue">
      • BDIntegerValueOpts
    Index

    Properties

    covIncrement?: number
    description?: string

    An optional textual description of the object (Description property)

    maxPresentValue?: number
    minPresentValue?: number
    name: string

    The object's name (Object_Name property)

    presentValue?: number
    unit: EngineeringUnits
    writable?: boolean
    writableOutOfService?: boolean

    Whether the Out_Of_Service property is writable from the BACnet network.

    When true, remote BACnet clients can set the object's Out_Of_Service property to TRUE or FALSE. Changing the property causes the object to emit an outofservice or inservice event accordingly. Default is false.

    false