/
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" }

Related content