Minor changes

This commit is contained in:
Fabian Affolter 2016-06-16 19:13:59 +02:00
parent b6610e76d5
commit bccd6d460d

View File

@ -13,10 +13,12 @@ ha_iot_class: "Local Polling"
ha_release: 0.22
---
The `Local File ` allows you to integrate any readable image file from disk into Home Assistant as a Camera.
If the image is updated in the file system the image displayed in Home Assistant will also be updated.
The `local_file` camera platform allows you to integrate any readable image file from disk into Home Assistant as a camera. If the image is updated on the file system the image displayed in Home Assistant will also be updated.
This can for example be used with various camera platforms that save a temporary images localy.
To enable this camera in your installation, add the following to your `configuration.yaml` file:
```yaml
# Example configuration.yaml entry
camera:
@ -27,7 +29,10 @@ camera:
Configuration variables:
- **name** (optional): Name of the camera
- **file_path** (required): File to serve as the camera.
- **name** (*Optional*): Name of the camera
- **file_path** (*Required*): File to serve as the camera.
The given **file_path** must be an existing file because the camera platform setup make a readable check on it.
<p class='note'>
The given `file_path` must be an existing file because the camera platform setup make a readable check on it.
</p>