From 2bd74c8a330a6dbd2a79f5953ad78c79c40c8dbc Mon Sep 17 00:00:00 2001 From: Andrej Friesen Date: Sun, 31 Dec 2017 13:25:22 +0100 Subject: [PATCH] Add example for local image on HASS.IO (#4311) * Add example for local image on HASS.IO * Minor changes --- source/_components/camera.generic.markdown | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/source/_components/camera.generic.markdown b/source/_components/camera.generic.markdown index 32fa4917481..c6f41ac3376 100644 --- a/source/_components/camera.generic.markdown +++ b/source/_components/camera.generic.markdown @@ -57,3 +57,14 @@ camera: still_image_url: https://www.yr.no/place/Norway/Oslo/Oslo/Oslo/meteogram.svg content_type: 'image/svg+xml' ``` + +### {% linkable_title Local image with Hass.io %} + +You can show an static image with this platform. Just place the image here: `/config/www/your_image.png` + +```yaml +camera: + - platform: generic + name: Some Image + still_image_url: https://127.0.0.1:8123/local/your_image.png +```