Skip to content
Markus Adrario edited this page Sep 15, 2023 · 3 revisions

Welcome to the homee for HomeAssistant wiki!

Here we collect information about the various Devices available in homee.

Device Characteristics

Profile and Attributes

Each device is identified by a device profile and attributes of different types.

One Attribute common to all devices is the WATCHDOG_ON_OFF:

{
    'id': XXX,
    'node_id': XXX,
    'instance': 0,
    'minimum': 0,
    'maximum': 1,
    'current_value': 1.0,
    'target_value': 1.0,
    'last_value': 0.0,
    'unit': '',
    'step_value': 1.0,
    'editable': 1,
    'type': 385,
    'state': 1,
    'last_changed': 1682166449,
    'changed_by': 1,
    'changed_by_id': 0,
    'based_on': 1,
    'data': '',
    'name': ''
}

Properties

These attributes have a set of properties, of which some are common to all in homee and some transport the data important for HA to represent them.

The common ones are:

{
    'id': 186,
    'node_id': 15,
    'instance': 0,
    'current_value': 0.0,
    'target_value': 0.0,
    'last_value': 0.0,
    'state': 1,
    'last_changed': 1681499575,
    'changed_by': 1,
    'changed_by_id': 0,
    'based_on': 1,
    'options': {
        'history': {
            'day': 35,
            'week': 5,
            'month': 1,
        }
    }
}

These are omitted in the Device pages, because every attribute has them and hence we can assume they are present. Also they are set by homee and therefore read only.
Only exception is the history in options. Here if the attribute has an 'options' property on the device page, you can assume the history is present.

Clone this wiki locally