home-assistant.io/source/_components/camera.dispatcher.markdown
Pascal Vizeli 0dc23ba931 Dispatcher camera for 0.40 (#2219)
* Create camera.dispatcher.markdown

* Update camera.dispatcher.markdown

Minor spelling fix.

* Update camera.dispatcher.markdown
2017-03-11 12:57:24 -08:00

1.1 KiB

layout, title, description, date, sidebar, comments, sharing, footer, ha_category, logo, ha_release, ha_iot_class
layout title description date sidebar comments sharing footer ha_category logo ha_release ha_iot_class
page Dispatcher IP Camera Instructions how to integrate internal dispatcher cameras within Home Assistant. 2017-03-08 00:00 true false true true Camera camcorder.png 0.40 depends

This platform is meant for developers only.

The dispatcher camera platform allows developers to create virtual camera's.

You would normally not add this camera to your configuration directly but have it be discovered by one of the components that uses it.

# Example configuration.yaml entry
camera:
  - platform: dispatcher
    signal: name_of_dispatcher_signal

To update the image from another piece of code, run this from an async context:

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.