diff --git a/atom.xml b/atom.xml index 41b9ba769a..9244068241 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@
The URL for a binary sensor looks like the example below:
+The HTTP binary sensor is dynamically created with the first request that is made to its URL. You don’t have to define it in the configuration first.
+The sensor will then exist as long as Home Assistant is running. After a restart of Home Assistant the sensor will be gone until it is triggered again.
+The URL for a binary sensor looks like the example below:
http://IP_ADDRESS:8123/api/states/binary_sensor.DEVICE_NAME
The URL for a sensor looks like the example below:
+The HTTP sensor is dynamically created with the first request that is made to its URL. You don’t have to define it in the configuration first.
+The sensor will then exist as long as Home Assistant is running. After a restart of Home Assistant the sensor will be gone until it is triggered again.
+The URL for a sensor looks like the example below:
http://IP_ADDRESS:8123/api/states/sensor.DEVICE_NAME
To use the Flux switch in your installation, add the following to your configuration.yaml
file:
# Example configuration.yaml entry
switch:
- platform: flux
- lights:
- - light.desk
- - light.lamp
- name: Fluxer
- start_time: '7:00'
- stop_time: '23:00'
- start_colortemp: 4000
- sunset_colortemp: 3000
- stop_colortemp: 1900
- brightness: 200
- disable_brightness_adjust: True
- mode: xy
+ - platform: flux
+ lights:
+ - light.desk
+ - light.lamp
Configuration variables:
@@ -109,6 +100,24 @@xy
, mired
and rgb
. Defaults to xy
.Full example:
+# Example configuration.yaml entry
+switch:
+ - platform: flux
+ lights:
+ - light.desk
+ - light.lamp
+ name: Fluxer
+ start_time: '7:00'
+ stop_time: '23:00'
+ start_colortemp: 4000
+ sunset_colortemp: 3000
+ stop_colortemp: 1900
+ brightness: 200
+ disable_brightness_adjust: True
+ mode: xy
+
+