|  Developer
Updated on November 16, 2021

Node

  • Node description.
Edit
				
					{
    _id = 1,
    manufacturer_id = "Ezlo",
    model_id = "Ezlo plug",
    security = 0,
    is_reachable = 1,
    is_battery_powered = 1,
    last_update_time = 1591107772,
    reachable_state_timeout = 3600,
    endpoints = {
        {
            _id = 1,
            profileId = 260,
            clusters = {
                {
                    _id = 1,
                    version = 1,
                    ...
                },
                {
                    _id = 2,
                    version = 1,
                    ...
                },
            }
        },
        {
            _id = 2,
            clusters = {
                ...
            }
        },
        ...
    }
}				
			
Edit
field type description
_id int
manufacturer_id string
model_id string
security bool
is_reachable bool
is_battery_powered bool
last_update_time bool Timepoint, when device sent data to hub last time
reachable_state_timeout bool Duration between device reachable state recheck in seconds
endpoints table
version int Not implemented