Compare commits
5 Commits
8f63ede1f0
...
730d1cf338
Author | SHA1 | Date | |
---|---|---|---|
730d1cf338 | |||
27408f02dd | |||
624ee50d14 | |||
48d29a6585 | |||
04eff2e382 |
@ -1 +1 @@
|
||||
2024.3.1
|
||||
2024.6.4
|
@ -372,7 +372,11 @@
|
||||
entity_id: person.marcus_scholz
|
||||
zone: zone.home
|
||||
event: leave
|
||||
condition: []
|
||||
condition:
|
||||
- condition: state
|
||||
entity_id: person.marianna_scholz
|
||||
state: not_home
|
||||
enabled: false
|
||||
action:
|
||||
- service: light.turn_off
|
||||
target:
|
||||
@ -418,6 +422,12 @@
|
||||
- condition: sun
|
||||
after_offset: '-1'
|
||||
after: sunset
|
||||
enabled: false
|
||||
- condition: sun
|
||||
before: sunrise
|
||||
before_offset: '+1'
|
||||
after: sunset
|
||||
after_offset: '-1'
|
||||
action:
|
||||
- service: script.moodlight_orange_plasma
|
||||
data: {}
|
||||
|
@ -39,6 +39,7 @@ api:
|
||||
key: !secret apikey
|
||||
|
||||
ota:
|
||||
platform: esphome
|
||||
password: !secret ota
|
||||
|
||||
# DHT22 sensor
|
||||
|
@ -39,6 +39,7 @@ api:
|
||||
key: !secret apikey
|
||||
|
||||
ota:
|
||||
platform: esphome
|
||||
password: !secret ota
|
||||
|
||||
# DHT22 sensor
|
||||
|
@ -46,6 +46,7 @@ api:
|
||||
key: !secret apikey
|
||||
|
||||
ota:
|
||||
platform: esphome
|
||||
password: !secret ota
|
||||
|
||||
# Power key of li-ion charger
|
||||
|
@ -39,6 +39,7 @@ api:
|
||||
key: !secret apikey
|
||||
|
||||
ota:
|
||||
platform: esphome
|
||||
password: !secret ota
|
||||
|
||||
spi:
|
||||
|
@ -39,6 +39,7 @@ api:
|
||||
key: !secret apikey
|
||||
|
||||
ota:
|
||||
platform: esphome
|
||||
password: !secret ota
|
||||
|
||||
# Camera
|
||||
|
@ -79,6 +79,7 @@ api:
|
||||
|
||||
# Enable over-the-air updates
|
||||
ota:
|
||||
platform: esphome
|
||||
password: !secret ota
|
||||
|
||||
# Initialize I²C
|
||||
|
@ -20,7 +20,9 @@ esp32:
|
||||
api:
|
||||
encryption:
|
||||
key: !secret apikey
|
||||
|
||||
ota:
|
||||
platform: esphome
|
||||
password: !secret ota
|
||||
|
||||
wifi:
|
||||
|
@ -6,7 +6,9 @@ substitutions:
|
||||
api:
|
||||
encryption:
|
||||
key: !secret apikey
|
||||
|
||||
ota:
|
||||
platform: esphome
|
||||
password: !secret ota
|
||||
|
||||
wifi:
|
||||
|
@ -76,6 +76,7 @@ api:
|
||||
key: !secret apikey
|
||||
|
||||
ota:
|
||||
platform: esphome
|
||||
password: !secret ota
|
||||
|
||||
# Enable status LED
|
||||
|
@ -39,6 +39,7 @@ api:
|
||||
key: !secret apikey
|
||||
|
||||
ota:
|
||||
platform: esphome
|
||||
password: !secret ota
|
||||
|
||||
# Initialize I²C
|
||||
|
@ -78,6 +78,7 @@ api:
|
||||
|
||||
# Enable over-the-air updates
|
||||
ota:
|
||||
platform: esphome
|
||||
password: !secret ota
|
||||
|
||||
# Initialize I²C
|
||||
|
29
mqtt.yaml
29
mqtt.yaml
@ -1,33 +1,4 @@
|
||||
sensor:
|
||||
# MQTT bathroom sensors
|
||||
- name: Temperatur
|
||||
unique_id: bathroom.temperature
|
||||
state_topic: "home/bathroom/climate/sensor/temperature"
|
||||
device_class: 'temperature'
|
||||
state_class: 'measurement'
|
||||
unit_of_measurement: '°C'
|
||||
last_reset_value_template: '1970-01-01T00:00:00+00:00'
|
||||
device:
|
||||
identifiers: MagicMirror-DHT22
|
||||
name: MagicMirror-DHT22
|
||||
model: DHT22
|
||||
manufacturer: mqtt-io
|
||||
force_update: true
|
||||
|
||||
- name: Luftfeuchtigkeit
|
||||
unique_id: bathroom.humidity
|
||||
state_topic: "home/bathroom/climate/sensor/humidity"
|
||||
device_class: 'humidity'
|
||||
state_class: 'measurement'
|
||||
unit_of_measurement: '%'
|
||||
last_reset_value_template: '1970-01-01T00:00:00+00:00'
|
||||
device:
|
||||
identifiers: MagicMirror-DHT22
|
||||
name: MagicMirror-DHT22
|
||||
model: DHT22
|
||||
manufacturer: mqtt-io
|
||||
force_update: true
|
||||
|
||||
# MQTT/RTL_433 (outdoor) sensors
|
||||
# Reliable sensor with good placement (good values) and good reception
|
||||
- device_class: battery
|
||||
|
@ -2,60 +2,74 @@
|
||||
internet_usage_in_monthly:
|
||||
source: sensor.snmp_wan_in
|
||||
name: Monthly internet traffic in
|
||||
unique_id: monthly_internet_traffic_in
|
||||
cycle: monthly
|
||||
internet_usage_out_monthly:
|
||||
source: sensor.snmp_wan_out
|
||||
name: Monthly internet traffic out
|
||||
unique_id: monthly_internet_traffic_out
|
||||
cycle: monthly
|
||||
internet_usage_in_daily:
|
||||
source: sensor.snmp_wan_in
|
||||
name: Daily internet traffic in
|
||||
unique_id: daily_internet_traffic_in
|
||||
cycle: daily
|
||||
internet_usage_out_daily:
|
||||
source: sensor.snmp_wan_out
|
||||
name: Daily internet traffic out
|
||||
unique_id: daily_internet_traffic_out
|
||||
cycle: daily
|
||||
internet_usage_in_hourly:
|
||||
source: sensor.snmp_wan_in
|
||||
name: Hourly internet traffic in
|
||||
unique_id: hourly_internet_traffic_in
|
||||
cycle: hourly
|
||||
internet_usage_out_hourly:
|
||||
source: sensor.snmp_wan_out
|
||||
name: Hourly internet traffic out
|
||||
unique_id: hourly_internet_traffic_out
|
||||
cycle: hourly
|
||||
|
||||
# Energy
|
||||
energy_import_daily:
|
||||
source: sensor.energy_import_sum
|
||||
name: Energy Import Daily
|
||||
unique_id: energy_import_daily
|
||||
cycle: daily
|
||||
energy_import_monthly:
|
||||
source: sensor.energy_import_sum
|
||||
name: Energy Import Monthly
|
||||
unique_id: energy_import_monthly
|
||||
cycle: monthly
|
||||
energy_export_daily:
|
||||
source: sensor.energy_export_sum
|
||||
name: Energy Export Daily
|
||||
unique_id: energy_export_daily
|
||||
cycle: daily
|
||||
energy_export_monthly:
|
||||
source: sensor.energy_export_sum
|
||||
name: Energy Export Monthly
|
||||
unique_id: energy_export_monthly
|
||||
cycle: monthly
|
||||
energy_consumption_daily:
|
||||
source: sensor.energy_consumption_sum
|
||||
name: Energy Consumption Daily
|
||||
unique_id: energy_consumption_daily
|
||||
cycle: daily
|
||||
energy_consumption_monthly:
|
||||
source: sensor.energy_consumption_sum
|
||||
name: Energy Consumption Monthly
|
||||
unique_id: energy_consumption_monthly
|
||||
cycle: monthly
|
||||
|
||||
# Energy (Solar)
|
||||
energy_solar_daily:
|
||||
source: sensor.balkonkraftwerk_energy
|
||||
name: Energy Solar Daily
|
||||
unique_id: energy_solar_daily
|
||||
cycle: daily
|
||||
energy_solar_monthly:
|
||||
source: sensor.balkonkraftwerk_energy
|
||||
name: Energy Solar Monthly
|
||||
unique_id: energy_solar_monthly
|
||||
cycle: monthly
|
||||
|
Loading…
Reference in New Issue
Block a user