diff --git a/source/_integrations/light.mqtt.markdown b/source/_integrations/light.mqtt.markdown index 25c6be39a55..c1e2a59eaf0 100644 --- a/source/_integrations/light.mqtt.markdown +++ b/source/_integrations/light.mqtt.markdown @@ -597,6 +597,11 @@ brightness_scale: required: false type: integer default: 255 +color_temp_kelvin: + description: "When set to `true`, `command_topic` will publish color mode updates in Kelvin, and process `state_topic` will process state updates in Kelvin. By default, the `color_temp` values are converted to and from mireds." + required: false + type: boolean + default: false command_topic: description: The MQTT topic to publish commands to change the light’s state. required: true @@ -683,10 +688,20 @@ json_attributes_topic: description: The MQTT topic subscribed to receive a JSON dictionary payload and then set as sensor attributes. Usage example can be found in [MQTT sensor](/integrations/sensor.mqtt/#json-attributes-topic-configuration) documentation. required: false type: string +max_kelvin: + description: The maximum color temperature in Kelvin. + required: false + type: integer + default: 6535 max_mireds: description: The maximum color temperature in mireds. required: false type: integer +min_kelvin: + description: The minimum color temperature in Kelvin. + required: false + type: integer + default: 2000 min_mireds: description: The minimum color temperature in mireds. required: false