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

    Interface BDCharacterStringValueOpts

    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 BDCharacterStringValueOpts {
        description?: string;
        name: string;
        presentValue?: 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?: 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