mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-23 01:06:52 +00:00
Update SIMPLISAFE_EVENT results and automation usage. (#16342)
This commit is contained in:
parent
2a8d16aedc
commit
57fa899557
@ -105,30 +105,51 @@ following keys:
|
||||
* `system_id`: the system ID to which the event belongs
|
||||
* `timestamp`: the UTC datetime at which the event was received
|
||||
|
||||
For example, when the system is armed by "remote" means (via the web app, etc.), a
|
||||
For example, when someone rings the doorbell, a
|
||||
`SIMPLISAFE_EVENT` event will fire with the following event data:
|
||||
|
||||
```python
|
||||
{
|
||||
"changed_by": "",
|
||||
"event_type": "armed_home",
|
||||
"info": "System Armed (Home) by Remote Management",
|
||||
"sensor_name": "",
|
||||
"sensor_serial": "",
|
||||
"sensor_type": "remote",
|
||||
"system_id": 123456,
|
||||
"timestamp": datetime.datetime(2020, 2, 13, 23, 1, 13, tzinfo=<UTC>),
|
||||
"event_type": "SIMPLISAFE_EVENT",
|
||||
"data": {
|
||||
"last_event_changed_by": "",
|
||||
"last_event_type": "doorbell_detected",
|
||||
"last_event_info": "Someone is at your \"Front Door\"",
|
||||
"last_event_sensor_name": "Front Door",
|
||||
"last_event_sensor_serial": "",
|
||||
"last_event_sensor_type": "doorbell",
|
||||
"system_id": [systemid],
|
||||
"last_event_timestamp": "2021-01-28T22:01:32+00:00"
|
||||
},
|
||||
"origin": "LOCAL",
|
||||
"time_fired": "2021-01-28T22:01:37.478539+00:00",
|
||||
"context": {
|
||||
"id": "[id]",
|
||||
"parent_id": null,
|
||||
"user_id": null
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
`event_type`, being one of the key fields automations might be built from, can have the
|
||||
following values:
|
||||
`last_event_type` can have the following values:
|
||||
|
||||
* `camera_motion_detected`
|
||||
* `doorbell_detected`
|
||||
* `entry_detected`
|
||||
* `motion_detected`
|
||||
|
||||
To build an automation using one of these, use `SIMPLISAFE_EVENT`
|
||||
as an event trigger, with `last_event_type` as the `event_data`.
|
||||
For example, the following will trigger when the doorbell rings:
|
||||
|
||||
```yaml
|
||||
trigger:
|
||||
- platform: event
|
||||
event_type: SIMPLISAFE_EVENT
|
||||
event_data:
|
||||
last_event_type: doorbell_detected
|
||||
```
|
||||
|
||||
### `SIMPLISAFE_NOTIFICATION`
|
||||
|
||||
`SIMPLISAFE_NOTIFICATION` events represent system notifications that would appear in the
|
||||
|
Loading…
x
Reference in New Issue
Block a user