Update Camera Dispatcher component configuration variable (#6625)

Update style of Camera Dispatcher component documentation to follow new configuration variables description.
Related to #6385.
This commit is contained in:
Klaas Schoute 2018-10-09 12:39:19 +02:00 committed by Franck Nijhof
parent ac2827112b
commit 1dd1d815a1

View File

@ -36,6 +36,13 @@ from homeassistant.helpers.dispatcher import async_dispatcher_send
async_dispatcher_send(hass, 'name_of_dispatcher_signal', image_data)
```
Configuration variables:
- **signal** (*Required*): The signal name of dispatcher signal they send image data to this camera.
- **name** (*Optional*): This parameter allows you to override the name of your camera.
{% configuration %}
signal:
description: The signal name of dispatcher signal they send image data to this camera.
required: true
type: string
name:
description: This parameter allows you to override the name of your camera.
required: false
type: string
{% endconfiguration %}