mqtt2ha
    Preparing search index...

    Interface DeviceConfiguration

    Configuration for a physical device in Home Assistant Contains information used to identify and describe the device in the Home Assistant device registry

    interface DeviceConfiguration {
        configuration_url?: string;
        hw_version?: string;
        identifiers?: string | string[];
        manufacturer?: string;
        model?: string;
        name?: string;
        serial_number?: string;
        suggested_area?: string;
        sw_version?: string;
        via_device?: string;
    }
    Index

    Properties

    configuration_url?: string

    A URL to the device's web interface or configuration page. Can be either an http://, https:// or an internal homeassistant:// URL. Example: "http://192.168.1.100" or "homeassistant://config/devices"

    hw_version?: string

    The hardware version or revision of the device. Example: "rev2"

    identifiers?: string | string[]

    A list of identifiers that uniquely identify the device. Can be a single string or an array of strings. At least one identifier is required to register the device in Home Assistant.

    manufacturer?: string

    The manufacturer or brand name of the device. Example: "Acme Corp"

    model?: string

    The model identifier or product name of the device. Example: "Room Sensor v1"

    name?: string

    The name of the device as it will appear in the Home Assistant UI. This can be different from the names of individual entities belonging to this device.

    serial_number?: string

    The serial number of the device. Example: "ABC123"

    suggested_area?: string

    The suggested area/room where the device is installed. Home Assistant will automatically assign the device to this area.

    sw_version?: string

    The firmware or software version running on the device. Example: "1.2.3"

    via_device?: string

    Identifier of a gateway or bridge device through which this device is connected. This creates a connection between devices in the Home Assistant UI.