From c6a41814a31c9be6f82dc2e5905ce6797add024a Mon Sep 17 00:00:00 2001 From: "J.P. Krauss" Date: Sun, 20 Nov 2022 08:30:08 -0800 Subject: [PATCH] Update Weather Sensor Logging --- packages/security/README.md | 12 ++++++++++++ packages/weather/weather.yaml | 16 ++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/packages/security/README.md b/packages/security/README.md index ec0c988..8f8c854 100644 --- a/packages/security/README.md +++ b/packages/security/README.md @@ -26,3 +26,15 @@ The Amcrest AD410 doorbell camera expects to have an internet connection to use ```shellscript $ 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 \ No newline at end of file diff --git a/packages/weather/weather.yaml b/packages/weather/weather.yaml index bf57ca8..74040ea 100644 --- a/packages/weather/weather.yaml +++ b/packages/weather/weather.yaml @@ -3,6 +3,14 @@ # ----------------------------------------------------------------------------- # Recorder Customization 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: domains: - weather @@ -12,6 +20,14 @@ recorder: # ----------------------------------------------------------------------------- # InfluxDB Customization 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: domains: - weather