Skip to main content

What is the difference between parameters and attributes?

FeatureParametersAttributes
PurposeControl and monitor device stateStatic metadata
MutabilityRead and/or writeRead-only
ExamplesPower, Brightness, TemperatureSerial number, Firmware version
Synced via MQTTYes, updated dynamicallyNo, reported once at boot
Has UI type / boundsYesNo

Parameters are the live, controllable state (power on/off, brightness, sensor readings). They sync between device and cloud over MQTT and can be changed remotely.

Attributes are fixed metadata (e.g., serial number, firmware version) reported once as part of the node configuration. They describe the device or node and do not change during operation.