diff --git a/en/home-assitantant-view.md b/en/home-assitantant-view.md new file mode 100644 index 0000000..b2090a9 --- /dev/null +++ b/en/home-assitantant-view.md @@ -0,0 +1,51 @@ +# OpenIPC Wiki +[Table of Content](../README.md) + + +## HomeAsistant Generic camera + +Go to /config/integrations/dashboard + +Add integrations --> Generic camera + +Config parameter +``` +Still Image URL -> http:///image.jpg +Stream Source URL -> rtsp://:@:554/stream=0 +RTSP transport protocol -> TCP +Authentication -> basic +Username -> +Password -> +Frame Rate -> 15 +Verify SSL certificate -> empty +Limit refetch to url change ->empty +``` +Default User and PASS OpenIPC -> ("root" ¨12345¨) +**Note:** Be carful with frame rate (Currently home assistant does not support more than 20 having flicker problems) + +Example configuration generic camera home assitant (IP_Camera 192.168.1.29) + +![](../images/howto-streaming-homeassistant.png) + +## Lovelace example +Add this extract in a new card manually (yaml format) +``` +camera_view: live +type: picture-glance +image: http://192.168.1.29/image.jpg +entities: [] +entity: camera.192_168_1_29 +view_layout: + position: main +camera_image: camera.192_168_1_29 +``` +**OTHERNote:** +### Camera Configuration +![](../images/HA_CameraConfig.png) + +### Camera Router +Remember to set a fixed IP address for your camera from your router, otherwise it could change when it reboots. + + +Enjoy the stream. + diff --git a/images/HA_CameraConfig.png b/images/HA_CameraConfig.png new file mode 100644 index 0000000..ca597fb Binary files /dev/null and b/images/HA_CameraConfig.png differ diff --git a/images/howto-streaming-homeassistant.png b/images/howto-streaming-homeassistant.png new file mode 100644 index 0000000..1d9ca29 Binary files /dev/null and b/images/howto-streaming-homeassistant.png differ