Skip to content

Commit 9186c87

Browse files
committed
2 parents 245e67d + 946b7b0 commit 9186c87

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

source/_components/light.mqtt.markdown

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,12 @@ Configuration variables:
3636
- **brightness_command_topic** (*Optional*): The MQTT topic to publish commands to change the light's brightness.
3737
- **rgb_state_topic** (*Optional*): The MQTT topic subscribed to receive RGB state updates.
3838
- **rgb_command_topic** (*Optional*): The MQTT topic to publish commands to change the light's RGB state.
39+
- **color_temp_state_topic** (*Optional*): The MQTT topic subscribed to receive color temperature state updates.
40+
- **color_temp_command_topic** (*Optional*): The MQTT topic to publish commands to change the light's color temperature state.
3941
- **state_value_template** (*Optional*): Defines a [template](/topics/templating/) to extract the state value.
4042
- **brightness_value_template** (*Optional*): Defines a [template](/topics/templating/) to extract the brightness value.
4143
- **rgb_value_template** (*Optional*): Defines a [template](/topics/templating/) to extract the RGB value.
44+
- **color_temp_value_template** (*Optional*): Defines a [template](/topics/templating/) to extract the color temperature value.
4245
- **brightness_scale** (*Optional*): Defines the maximum brightness value (i.e. 100%) of the MQTT device (defaults to 255).
4346
- **qos** (*Optional*): The maximum QoS level of the state topic. Default is 0 and will also be used to publishing messages.
4447
- **payload_on** (*Optional*): The payload that represents enabled state. Default is "ON".
@@ -99,4 +102,3 @@ light:
99102
### {% linkable_title Implementations %}
100103

101104
A basic example using a nodeMCU board (ESP8266) to control its built-in led (on/off) can be found [here](https://github.com/mertenats/open-home-automation/tree/master/ha_mqtt_light). [Here](https://github.com/mertenats/open-home-automation/tree/master/ha_mqtt_rgb_light) is another example to control a RGB led (on/off, brightness and colors).
102-

source/_components/sensor.forecast.markdown

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,5 +84,17 @@ Configuration variables:
8484
- **precip_intensity_max**: Today's expected maximum intensity of precipitation.
8585
- **units** (*Optional*): Specify the unit system. Default to `si` or `us` based on the temperature preference in Home Assistant. Other options are `auto`, `us`, `si`, `ca`, and `uk2`.
8686
`auto` will let forecast.io decide the unit system based on location.
87+
- **update_inverval** (*Optional*): Minimum time interval between updates. Default is 2 minutes. Supported formats:
88+
- `update_interval: 'HH:MM:SS'`
89+
- `update_interval: 'HH:MM'`
90+
- Time period dictionary, e.g.:
91+
<pre>update_interval:
92+
# At least one of these must be specified:
93+
days: 0
94+
hours: 0
95+
minutes: 3
96+
seconds: 30
97+
milliseconds: 0
98+
</pre>
8799

88100
Details about the API are available in the [Forecast.io documentation](https://developer.forecast.io/docs/v2).

0 commit comments

Comments
 (0)