Ich hatte mir als Ziel gesetzt Mondphase etwas besser als das "default" von HA zu bewerkstelligen
- dies ohne custom.... war nicht ganz so ohne weiteres möglich "jetzt passt es"
als Ergebnis gibt es dies
was wird benötigt...
1. den sensor Mond "moon"
Einstellungen -> Geräte&Dienste -> Integration hinzufügen ->mond
den Inhalt Link zu den Bildern unter www kopieren \\>IP_home_assistant<\config\www\moon_phases\
neustart von homeassistant
den korrekten Namen vom Mond Sensor anpassen
in der configuration.yaml benötigt Ihr sensor: und scrape:
sensor:
scrape:
jetzt noch einmal neu starten dann können die sensoren eingebunden werden
hier meine config der UI, beachtet das euer Mond Sensore eventuell einen anderne Namen haben kann..
Dies ist custom wird nur für transparenz benötigt
- dies ohne custom.... war nicht ganz so ohne weiteres möglich "jetzt passt es"
als Ergebnis gibt es dies
was wird benötigt...
1. den sensor Mond "moon"
Einstellungen -> Geräte&Dienste -> Integration hinzufügen ->mond
den Inhalt Link zu den Bildern unter www kopieren \\>IP_home_assistant<\config\www\moon_phases\
neustart von homeassistant
den korrekten Namen vom Mond Sensor anpassen
in der configuration.yaml benötigt Ihr sensor: und scrape:
sensor:
YAML:
sensor:
- platform: template
sensors:
mond:
entity_id: sensor.mond
friendly_name: 'Mond'
value_template: >
{% if is_state('sensor.moon_phase', 'new_moon') %}
Neumond
{% elif is_state('sensor.moon_phase', 'waxing_crescent') %}
Zuhnemender Sichelmond
{% elif is_state('sensor.moon_phase', 'first_quarter') %}
Zunehmender Halbmond
{% elif is_state('sensor.moon_phase', 'waxing_gibbous') %}
Zuhnemender Dreiviertelmond
{% elif is_state('sensor.moon_phase', 'full_moon') %}
Vollmond
{% elif is_state('sensor.moon_phase', 'waning_gibbous') %}
Abnehmender Deiviertelmond
{% elif is_state('sensor.moon_phase', 'last_quarter') %}
Abnehmender Halbmond
{% elif is_state('sensor.moon_phase', 'waning_crescent') %}
Abnehmender Sichelmond
{% endif %}
entity_picture_template: /local/moon_phases/{{ states("sensor.moon_phase") }}.png
scrape:
YAML:
scrape:
- resource: https://www.der-mond.de/
sensor:
- name: "Beleuchtungsgrad"
unique_id: mond.beleuchtungsgrad
icon: "mdi:lightbulb-night-outline"
select: ".table > tbody:nth-child(1) > tr:nth-child(8) > td:nth-child(2)"
- name: "Mondaufgang"
unique_id: mond.mondaufgang
icon: "mdi:arrow-up-circle-outline"
select: ".table > tbody:nth-child(1) > tr:nth-child(9) > td:nth-child(2)"
- name: "Monduntergang"
unique_id: mond.monduntergang
icon: "mdi:arrow-down-circle-outline"
select: ".table > tbody:nth-child(1) > tr:nth-child(10) > td:nth-child(2)"
- name: "Mondalter"
unique_id: mond.mondalter
icon: "mdi:calendar-clock-outline"
select: ".table > tbody:nth-child(1) > tr:nth-child(7) > td:nth-child(2)"
- name: "Kommende Mondphase"
unique_id: mond.kommende.mondphase
icon: "mdi:moon-waxing-crescent"
select: ".table > tbody:nth-child(1) > tr:nth-child(11) > td:nth-child(2)"
- name: "Mondphase heute"
unique_id: mond.mondphase.heute
icon: "mdi:moon-waning-crescent"
select: ".table > tbody:nth-child(1) > tr:nth-child(2) > td:nth-child(2)"
- name: "Astronomisches Sternbild"
unique_id: mond.astronomisches.sternbild
icon: "mdi:weather-night"
select: ".table > tbody:nth-child(1) > tr:nth-child(5) > td:nth-child(2)"
- name: "Astrologisches Sternbild"
unique_id: mond.astrologisches.sternbild
icon: "mdi:star-crescent"
select: ".table > tbody:nth-child(1) > tr:nth-child(6) > td:nth-child(2)"
jetzt noch einmal neu starten dann können die sensoren eingebunden werden
hier meine config der UI, beachtet das euer Mond Sensore eventuell einen anderne Namen haben kann..
Dies ist custom wird nur für transparenz benötigt
Code:
style: |
ha-card {
opacity: 80%
}
YAML:
type: entities
style: |
ha-card {
opacity: 80%
}
entities:
- entity: sensor.mond
name: Mondstand
- entity: sensor.mond_mondaufgang
- entity: sensor.mond_monduntergang
- entity: sensor.mond_mondalter
- entity: sensor.mond_beleuchtungsgrad
- entity: sensor.kommende_mondphase
- entity: sensor.mondphase_heute
- entity: sensor.astrologisches_sternbild
- entity: sensor.astronomisches_sternbild
title: Mondphase
Zuletzt bearbeitet: