1.6 KiB
layout, title, description, date, sidebar, comments, sharing, footer, logo, ha_category, ha_release, ha_iot_class
layout | title | description | date | sidebar | comments | sharing | footer | logo | ha_category | ha_release | ha_iot_class |
---|---|---|---|---|---|---|---|---|---|---|---|
page | UniFi Video Camera | Instructions on how to integrate UVC cameras within Home Assistant. | 2016-02-07 10:00 | true | false | true | true | ubiquiti.png | Camera | 0.13 | Local Polling |
The uvc
camera platform allows you to integrate UniFi Video Camera (UVC) into Home Assistant.
The platform connects to the Unifi NVR software and automatically discovers/adds any camera connected to the NVR.
{% linkable_title Setup %}
It is recommended that you create a new user for this platform in the NVR software and only give the user the permissions it need to operate.
- The API key is found in
User
->My account
->API Access
in the NVR software. - The camera password is found in
Settings
->Camera Settings
->Camera Password
in the NVR software.
{% linkable_title Configuration %}
To enable, add the following to your configuration.yaml
file:
# Example configuration.yaml entry
camera:
- platform: uvc
nvr: IP_ADDRESS
key: API_KEY
{% configuration %} nvr: description: The IP or hostname of the NVR (Network Video Recorder) server. required: true type: string port: description: The port number to use for accessing the NVR. required: false type: integer default: 7080 key: description: The API key available from the NVR web interface. required: true type: string password: description: The camera password. required: false type: string default: ubnt {% endconfiguration %}