Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 885 Bytes

readme.md

File metadata and controls

28 lines (23 loc) · 885 Bytes

Moon Widget for HA Dashboard (appdaemon)

This widget needs the moon sensor to be installed in Home Assistant. Install files into the appdaemon conf directory and configure the moon widget like this in a .dash file.

moon:
    widget_type: moon
    title: Moon

If you want to translate the moon phases, you can do it with a state map. Example in German:

mond:
    widget_type: moon
    title: Mond
    state_map:
      "New moon": 'Neumond'
      "Waxing crescent": 'erstes Viertel'
      "First quarter": 'zunehmender Halbmond'
      "Waxing gibbous": 'zweites Viertel'
      "Full moon": 'Vollmond'
      "Waning gibbous": 'drittes Viertel'
      "Last quarter": 'abnehmender Halbmond'
      "Waning crescent": 'letztes Viertel'