diff --git a/config/lovelace/advanced_dashboard/01_new.yaml b/config/lovelace/advanced_dashboard/01_new.yaml index a8deb6a..82f76da 100644 --- a/config/lovelace/advanced_dashboard/01_new.yaml +++ b/config/lovelace/advanced_dashboard/01_new.yaml @@ -3,8 +3,20 @@ path: new icon: "mdi:new-box" cards: - type: vertical-stack - title: Trisensor cards: + - type: "custom:mini-graph-card" + entities: + - sensor.air_visual_aqi + - sensor.waqi_mladost_sofia + cache: false + group_by: hour + hours_to_show: 72 + line_width: 2 + show: + average: true + extrema: true + fill: true + - type: "custom:mini-graph-card" entities: - sensor.trisensor_temperature @@ -30,7 +42,6 @@ cards: fill: true - type: vertical-stack - title: Multisensor cards: - type: "custom:mini-graph-card" entities: @@ -81,11 +92,35 @@ cards: fill: true - type: vertical-stack - title: Thermostat cards: - type: "custom:mini-graph-card" entities: - sensor.living_room_radiator_temperature + - sensor.trisensor_temperature + cache: false + group_by: hour + hours_to_show: 72 + line_width: 2 + show: + average: true + extrema: true + fill: true + - type: "custom:mini-graph-card" + entities: + - sensor.bedroom_radiator_temperature + - sensor.bedroom_weather_temperature + cache: false + group_by: hour + hours_to_show: 72 + line_width: 2 + show: + average: true + extrema: true + fill: true + - type: "custom:mini-graph-card" + entities: + - sensor.kitchen_radiator_temperature + - sensor.kitchen_weather_temperature cache: false group_by: hour hours_to_show: 72 diff --git a/config/lovelace/advanced_dashboard/03_climate.yaml b/config/lovelace/advanced_dashboard/03_climate.yaml index a609a3c..51d8a8c 100644 --- a/config/lovelace/advanced_dashboard/03_climate.yaml +++ b/config/lovelace/advanced_dashboard/03_climate.yaml @@ -20,8 +20,6 @@ cards: max_columns: 3 cards: - type: entities - title: Climate - icon: mdi:thermometer show_header_toggle: false entities: - input_boolean.heating_enabled diff --git a/config/packages/modules/climate/air_quality.yaml b/config/packages/modules/climate/air_quality.yaml new file mode 100644 index 0000000..cacf52b --- /dev/null +++ b/config/packages/modules/climate/air_quality.yaml @@ -0,0 +1,6 @@ +sensor: + - platform: waqi + token: !secret waqi_key + locations: + - "mladost" + - "druzhba" diff --git a/config/secrets.example.yaml b/config/secrets.example.yaml index c4f02c8..0354580 100644 --- a/config/secrets.example.yaml +++ b/config/secrets.example.yaml @@ -109,3 +109,6 @@ tuya_password: pass twitch_client_id: client-id github_access_token: Basic token + +air_visual_key: key +waqi_key: key