Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c1ba3012d4 | |||
| e77d9ee8d2 | |||
| bf49633fac | |||
| 99579a30f7 | |||
| 250bfa94bd | |||
| c342efc08f | |||
| 13e58355da | |||
| ee814c4afe | |||
| 6149a9e994 | |||
| 3b7c30634e | |||
| 38da2cebdd | |||
| 3da69c19ab |
+1
-1
@@ -1 +1 @@
|
||||
2026.7.1
|
||||
2026.7.2
|
||||
@@ -1438,3 +1438,22 @@
|
||||
device_id: 6d1be741876624a70ab5b01b54c6fd6f
|
||||
entity_id: 621e4377a089b7f5d92c7c9f2cc171a1
|
||||
domain: switch
|
||||
|
||||
- id: epaper_daily_demotivational_quote
|
||||
alias: Epaper tägliches Demotivationszitat
|
||||
description: Wählt täglich ein festes Zitat aus der lokalen Zitatbibliothek aus.
|
||||
triggers:
|
||||
- trigger: homeassistant
|
||||
event: start
|
||||
- trigger: time
|
||||
at: "00:00:00"
|
||||
conditions: []
|
||||
actions:
|
||||
- action: input_select.select_option
|
||||
target:
|
||||
entity_id: input_select.epaper_demotivationszitat
|
||||
data:
|
||||
option: >-
|
||||
{% set quotes = state_attr('input_select.epaper_demotivationszitat', 'options') %}
|
||||
{{ quotes[(now().strftime('%j') | int - 1) % (quotes | count)] }}
|
||||
mode: single
|
||||
|
||||
@@ -35,6 +35,12 @@ utility_meter: !include utility_meters.yaml
|
||||
mqtt: !include mqtt.yaml
|
||||
mqtt_statestream: !include mqtt_statestream.yaml
|
||||
|
||||
# Calendar data is normalised in a sandboxed script before ESPHome receives it.
|
||||
python_script:
|
||||
|
||||
# Home Assistant-managed e-paper quote library
|
||||
input_select: !include input_select.yaml
|
||||
|
||||
# Template sensors
|
||||
template: !include template.yaml
|
||||
|
||||
|
||||
+739
-284
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,40 @@
|
||||
epaper_demotivationszitat:
|
||||
name: Epaper Demotivationszitat
|
||||
icon: mdi:emoticon-sad-outline
|
||||
options:
|
||||
- "Erwarte nichts. Dann kann dich auch wenig enttäuschen."
|
||||
- "Du musst nicht scheitern. Es reicht, es nie zu versuchen."
|
||||
- "Der Weg ist das Ziel. Leider führt er im Kreis."
|
||||
- "Auch ein Rückschritt ist Bewegung. Nur eben rückwärts."
|
||||
- "Nicht jeder Tag muss gut sein. Dieser hier zum Beispiel nicht."
|
||||
- "Dein Potenzial ist beeindruckend. Seine Nutzung bleibt optional."
|
||||
- "Morgen wird alles besser. Wahrscheinlich aber auch nicht."
|
||||
- "Motivation ist vergänglich. Frust ist zuverlässig."
|
||||
- "Man kann nicht alles haben. Nicht einmal gute Laune."
|
||||
- "Wenn Plan A scheitert, war Plan B vermutlich auch keine Hilfe."
|
||||
- "Es ist nie zu spät, die Erwartungen zu senken."
|
||||
- "Du bist nicht zu spät. Die anderen sind nur früher gescheitert."
|
||||
- "Das wird schon. Nur eben nicht gut."
|
||||
- "Ziele sind wichtig. Besonders wenn man sie verfehlt."
|
||||
- "Die Konkurrenz schläft nicht. Du darfst trotzdem weitermachen."
|
||||
- "Du gibst dein Bestes. Das erklärt einiges."
|
||||
- "Jeder Fehler ist eine Lektion. Du bist bald Experte."
|
||||
- "Heute ist ein neuer Tag. Die Probleme sind dieselben."
|
||||
- "Erfolg braucht Geduld. Enttäuschung ist sofort verfügbar."
|
||||
- "Ein kleiner Schritt für dich. Ein kaum bemerkbarer für alle anderen."
|
||||
- "Wer früh aufgibt, hat länger frei."
|
||||
- "Es gibt keine dummen Fragen. Nur ungünstige Zeitpunkte."
|
||||
- "Deine Komfortzone vermisst dich nicht."
|
||||
- "Manchmal gewinnt man. Meistens lernt man daraus."
|
||||
- "Der erste Schritt ist der schwerste. Die anderen sind nur länger."
|
||||
- "Arbeite hart. Vielleicht merkt es niemand."
|
||||
- "Nicht aufgeben. Es könnte noch schlimmer werden."
|
||||
- "Träume groß. Die Realität übernimmt den Rest."
|
||||
- "Das Glas ist halb voll. Mit Problemen."
|
||||
- "Jeder Tag bietet Chancen. Manche davon sind Termine."
|
||||
- "Du kannst alles schaffen. Außer vielleicht heute."
|
||||
- "Das Leben ist kurz. Besprechungen sind länger."
|
||||
- "Mut steht am Anfang. Die Rechnung kommt später."
|
||||
- "Wenn es einfach wäre, würde es jemand anders machen."
|
||||
- "Deine To-do-Liste glaubt an dich. Sie muss ja nicht mitmachen."
|
||||
- "Perfektion ist erreichbar. Nur nicht von hier."
|
||||
@@ -0,0 +1,87 @@
|
||||
CALENDAR_NAMES = {
|
||||
"calendar.tkrz_kalender": "Arbeit",
|
||||
"calendar.privat": "Privat",
|
||||
}
|
||||
DAY_NAMES = ["Mo", "Di", "Mi", "Do", "Fr", "Sa", "So"]
|
||||
MAX_ENTRIES = 8
|
||||
# Reserve the right side of each row for start and end times.
|
||||
MAX_TITLE_LENGTH = 22
|
||||
MAX_META_LENGTH = 35
|
||||
|
||||
|
||||
def shorten(value, maximum):
|
||||
value = (value or "").strip()
|
||||
if len(value) <= maximum:
|
||||
return value
|
||||
return value[: maximum - 3].rstrip() + "..."
|
||||
|
||||
|
||||
def compact_event(event, calendar_name):
|
||||
start = event.get("start", "")
|
||||
all_day = "T" not in start
|
||||
end = event.get("end", "")
|
||||
time = "ganztägig" if all_day else start[11:16]
|
||||
end_time = "" if all_day or "T" not in end else end[11:16]
|
||||
|
||||
location = (event.get("location") or "").split("\n")[0].strip()
|
||||
meta = calendar_name
|
||||
if location:
|
||||
meta += " / " + location
|
||||
|
||||
return {
|
||||
"title": shorten(event.get("summary", "Ohne Titel"), MAX_TITLE_LENGTH),
|
||||
"time": time,
|
||||
"end": end_time,
|
||||
"meta": shorten(meta, MAX_META_LENGTH),
|
||||
"all_day": int(all_day),
|
||||
}
|
||||
|
||||
|
||||
calendar_data = data.get("calendar", {})
|
||||
today = str(data.get("now", ""))[:10]
|
||||
events_by_date = {}
|
||||
|
||||
for calendar_id, calendar in calendar_data.items():
|
||||
calendar_name = CALENDAR_NAMES.get(calendar_id, calendar_id.split(".")[-1].capitalize())
|
||||
for event in calendar.get("events", []):
|
||||
start = event.get("start", "")
|
||||
end = event.get("end", "")
|
||||
event_date = start[:10]
|
||||
end_date = end[:10]
|
||||
|
||||
# Ignore malformed or already finished entries. All-day event end dates
|
||||
# are exclusive in Home Assistant; timed events ending today may still be
|
||||
# active. Multi-day entries remain visible on today's date rail.
|
||||
all_day = "T" not in start
|
||||
if not event_date or (all_day and end_date <= today) or (not all_day and end_date < today):
|
||||
continue
|
||||
if event_date < today:
|
||||
event_date = today
|
||||
|
||||
events_by_date.setdefault(event_date, []).append(
|
||||
compact_event(event, calendar_name)
|
||||
)
|
||||
|
||||
entries = []
|
||||
entry_count = 0
|
||||
for date in sorted(events_by_date):
|
||||
if entry_count >= MAX_ENTRIES:
|
||||
break
|
||||
|
||||
events = events_by_date[date]
|
||||
events.sort(key=lambda item: (item["all_day"] == 0, item["time"]))
|
||||
remaining = MAX_ENTRIES - entry_count
|
||||
events = events[:remaining]
|
||||
entry_count += len(events)
|
||||
|
||||
parsed_date = dt_util.parse_datetime(date)
|
||||
entries.append(
|
||||
{
|
||||
"day": parsed_date.day,
|
||||
"weekday": DAY_NAMES[parsed_date.weekday()],
|
||||
"today": int(date == today),
|
||||
"events": events,
|
||||
}
|
||||
)
|
||||
|
||||
output["entries"] = entries
|
||||
+4
-2
@@ -10,7 +10,8 @@
|
||||
unique_id: '3303381540758'
|
||||
host: !secret router_ip
|
||||
community: !secret router_community
|
||||
baseoid: .1.3.6.1.2.1.31.1.1.1.6.511
|
||||
# baseoid: .1.3.6.1.2.1.31.1.1.1.6.511
|
||||
baseoid: .1.3.6.1.2.1.2.2.1.10.24
|
||||
version: 2c
|
||||
unit_of_measurement: "Octets"
|
||||
- platform: snmp
|
||||
@@ -18,7 +19,8 @@
|
||||
unique_id: '1573258703922'
|
||||
host: !secret router_ip
|
||||
community: !secret router_community
|
||||
baseoid: .1.3.6.1.2.1.31.1.1.1.10.511
|
||||
# baseoid: .1.3.6.1.2.1.31.1.1.1.10.511
|
||||
baseoid: .1.3.6.1.2.1.2.2.1.16.24
|
||||
version: 2c
|
||||
unit_of_measurement: "Octets"
|
||||
|
||||
|
||||
@@ -49,6 +49,11 @@
|
||||
name: Sun Setting Template
|
||||
state: '{{ as_timestamp(states.sun.sun.attributes.next_setting) | timestamp_custom
|
||||
(''%H:%M'') }}'
|
||||
- unique_id: epaper_demotivational_quote
|
||||
default_entity_id: sensor.epaper_demotivationszitat
|
||||
name: Epaper Demotivationszitat
|
||||
state: "{{ states('input_select.epaper_demotivationszitat') }}"
|
||||
|
||||
- name: "power_other"
|
||||
unique_id: '5579422933393'
|
||||
unit_of_measurement: "W"
|
||||
@@ -79,6 +84,35 @@
|
||||
attributes:
|
||||
last_reset: '1970-01-01T00:00:00+00:00'
|
||||
|
||||
# Compact calendar feed for the e-paper display. The actual event data lives in
|
||||
# the `entries` attribute, which ESPHome reads as a text sensor.
|
||||
- trigger:
|
||||
- trigger: homeassistant
|
||||
event: start
|
||||
- trigger: time_pattern
|
||||
minutes: /15
|
||||
action:
|
||||
- action: calendar.get_events
|
||||
target:
|
||||
entity_id:
|
||||
- calendar.tkrz_kalender
|
||||
- calendar.privat
|
||||
data:
|
||||
duration:
|
||||
days: 14
|
||||
response_variable: calendar_response
|
||||
- action: python_script.epaper_calendar_data
|
||||
data:
|
||||
calendar: "{{ calendar_response }}"
|
||||
now: "{{ now().date() }}"
|
||||
response_variable: calendar_converted
|
||||
sensor:
|
||||
- name: Epaper Kalenderdaten
|
||||
unique_id: epaper_calendar_data
|
||||
state: "{{ calendar_converted.entries | count }}"
|
||||
attributes:
|
||||
entries: "{{ calendar_converted.entries }}"
|
||||
|
||||
# Shelly 3EM cumulative sensors (incl. PV)
|
||||
- sensor:
|
||||
# Template sensor for values of power import (active_power > 0)
|
||||
|
||||
+6
-6
@@ -1,31 +1,31 @@
|
||||
# Internet traffic
|
||||
internet_usage_in_monthly:
|
||||
source: sensor.snmp_wan_in
|
||||
source: sensor.wan_in_derivative
|
||||
name: Monthly internet traffic in
|
||||
unique_id: monthly_internet_traffic_in
|
||||
cycle: monthly
|
||||
internet_usage_out_monthly:
|
||||
source: sensor.snmp_wan_out
|
||||
source: sensor.wan_out_derivative
|
||||
name: Monthly internet traffic out
|
||||
unique_id: monthly_internet_traffic_out
|
||||
cycle: monthly
|
||||
internet_usage_in_daily:
|
||||
source: sensor.snmp_wan_in
|
||||
source: sensor.wan_in_derivative
|
||||
name: Daily internet traffic in
|
||||
unique_id: daily_internet_traffic_in
|
||||
cycle: daily
|
||||
internet_usage_out_daily:
|
||||
source: sensor.snmp_wan_out
|
||||
source: sensor.wan_out_derivative
|
||||
name: Daily internet traffic out
|
||||
unique_id: daily_internet_traffic_out
|
||||
cycle: daily
|
||||
internet_usage_in_hourly:
|
||||
source: sensor.snmp_wan_in
|
||||
source: sensor.wan_in_derivative
|
||||
name: Hourly internet traffic in
|
||||
unique_id: hourly_internet_traffic_in
|
||||
cycle: hourly
|
||||
internet_usage_out_hourly:
|
||||
source: sensor.snmp_wan_out
|
||||
source: sensor.wan_out_derivative
|
||||
name: Hourly internet traffic out
|
||||
unique_id: hourly_internet_traffic_out
|
||||
cycle: hourly
|
||||
|
||||
Reference in New Issue
Block a user