Update Security Package

This commit is contained in:
2022-08-20 10:38:14 -07:00
parent dbebdeadc1
commit 6e65862bc2
2 changed files with 8 additions and 0 deletions

View File

@@ -19,3 +19,10 @@ This package contains configuration information for a Home Assistant powered hom
| Bathroom Window | Bathroom | binary_sensor.bathroom_window |
| Bedroom Side Window | Bedroom | binary_sensor.bedroom_side_window |
| Bedroom Back Window | Bedroom | binary_sensor.bedroom_back_window |
## Camera Notes
The Amcrest AD410 doorbell camera expects to have an internet connection to use Amcrest's cloud services. If it detects it is disconnected, it will flash the ring light. The connection state can be read and set via the camera's REST interface. Since Home Assistant does not support digest authentication with the REST service, a command is used to set the connection state. The command is kept in a secret since it includes camera authentication data, but it uses the following cURL command:
```shellscript
$ curl -X POST --digest -u admin:{password} -v 'http://{camera_ip}/cgi-bin/configManager.cgi?action=setConfig&VSP_PaaS.Online=true'
```