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

    Interface BDMultiStateValueOpts

    Common options for all BACnet objects

    This interface defines the base configuration parameters shared by every BACnet object type. Subclass-specific option interfaces extend this interface with additional properties.

    interface BDMultiStateValueOpts {
        description?: string;
        name: string;
        presentValue?: number;
        states: [first: string, ...rest: string[]];
        writable?: boolean;
        writableOutOfService?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    description?: string

    An optional textual description of the object (Description property)

    name: string

    The object's name (Object_Name property)

    presentValue?: number
    states: [first: string, ...rest: string[]]
    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