Update Security Package
This commit is contained in:
@@ -19,3 +19,10 @@ This package contains configuration information for a Home Assistant powered hom
|
|||||||
| Bathroom Window | Bathroom | binary_sensor.bathroom_window |
|
| Bathroom Window | Bathroom | binary_sensor.bathroom_window |
|
||||||
| Bedroom Side Window | Bedroom | binary_sensor.bedroom_side_window |
|
| Bedroom Side Window | Bedroom | binary_sensor.bedroom_side_window |
|
||||||
| Bedroom Back Window | Bedroom | binary_sensor.bedroom_back_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'
|
||||||
|
```
|
||||||
|
|||||||
@@ -57,6 +57,7 @@ binary_sensor:
|
|||||||
action: getConfig
|
action: getConfig
|
||||||
name: VSP_PaaS.Online
|
name: VSP_PaaS.Online
|
||||||
value_template: "{{ value.split('=')[1] }}"
|
value_template: "{{ value.split('=')[1] }}"
|
||||||
|
device_class: connectivity
|
||||||
|
|
||||||
# -----------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------
|
||||||
# Door and Window Groups
|
# Door and Window Groups
|
||||||
|
|||||||
Reference in New Issue
Block a user