Update Weather Sensor Logging

This commit is contained in:
2022-11-20 08:30:08 -08:00
parent 5899df15fc
commit c6a41814a3
2 changed files with 28 additions and 0 deletions

View File

@@ -26,3 +26,15 @@ The Amcrest AD410 doorbell camera expects to have an internet connection to use
```shellscript ```shellscript
$ curl -X POST --digest -u admin:{password} -v 'http://{camera_ip}/cgi-bin/configManager.cgi?action=setConfig&VSP_PaaS.Online=true' $ curl -X POST --digest -u admin:{password} -v 'http://{camera_ip}/cgi-bin/configManager.cgi?action=setConfig&VSP_PaaS.Online=true'
``` ```
## Security States
The security state machine uses the following arming states:
| Arming State | Trigger | Description |
| --- | --- | --- |
| `armed_home` | Manual | Manually set state |
| `armed_away` | House Presence Change | Automatically set when the house presence is set to `Away` |
| `armed_vacation` | House Presence Change | Automatically set when the house presence is `Extended Away` |
| `armed_night` | Timed | Sundown to Sunup when home |
The `armed_home` and `armed_night` modes enable

View File

@@ -3,6 +3,14 @@
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
# Recorder Customization # Recorder Customization
recorder: recorder:
include:
entities:
- sensor.owm_humidity
- sensor.owm_temperature
- sensor.owm_dew_point
- sensor.owm_pressure
- sensor.owm_wind_bearing
- sensor.owm_wind_speed
exclude: exclude:
domains: domains:
- weather - weather
@@ -12,6 +20,14 @@ recorder:
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
# InfluxDB Customization # InfluxDB Customization
influxdb: influxdb:
include:
entities:
- sensor.owm_humidity
- sensor.owm_temperature
- sensor.owm_dew_point
- sensor.owm_pressure
- sensor.owm_wind_bearing
- sensor.owm_wind_speed
exclude: exclude:
domains: domains:
- weather - weather