/
Response topic updates
Response topic updates
This page provides instructions on how to listen for device updates in Glamox Connect using MQTT. Each entity provides a state_topic
in its configuration payload, which must be subscribed to for receiving updates.
Listening for device updates
Each device publishes its updates to a unique state_topic
. To receive updates, subscribe to the respective topic using an MQTT client. Glamox Connect sends only the changed values (delta updates) rather than the full state. Store previous states since updates only contain changes, maintain the last known state if needed. Ensure continuous listening in case of disconnection.
Example Updates
Light State Change:
Initial State:
{
"brightness": 100,
"color_temp": 200,
"color_temp_kelvin": 5000,
"state": "ON"
}
Received Update:
{
"brightness": 80
}
Light Turned On:
{
"brightness": 80,
"state": "ON"
}
Some updates may include more than one changed attribute.
Sensor Updates:
{
"lux": 670
}
{
"temperature": 25.1
}
{
"presence": "ON"
}
, multiple selections available,
Related content
Description topics
Description topics
Read with this
Requests and descriptions
Requests and descriptions
Read with this
Introduction to our Local API
Introduction to our Local API
Read with this
Device and Entity Structure
Device and Entity Structure
Read with this
Device Health and Failure Monitoring
Device Health and Failure Monitoring
Read with this
Local API Configuration
Local API Configuration
Read with this