mqtt2ha
    Preparing search index...

    Interface AvailabilityConfiguration

    Configuration for entity availability reporting in Home Assistant Defines how the entity communicates its online/offline status

    interface AvailabilityConfiguration {
        payload_available?: string;
        payload_not_available?: string;
        value_template?: string;
    }
    Index

    Properties

    payload_available?: string

    The payload that represents the available state. Default is "online".

    payload_not_available?: string

    The payload that represents the unavailable state. Default is "offline".

    value_template?: string

    Defines a template to extract a device's availability from the topic. To determine the device's availability, the result of this template will be compared to payload_available and payload_not_available.