Letzter täglicher Build
Kompilierung fehlgeschlagen
Zuletzt gebaut: 02.09.2026, 15:01
Build-Details & Log anzeigenDieses Projekt enthält 1 weitere Datei
Nutze den Download-Button oben, um das komplette Projekt herunterzuladen und alle Dateien einzusehen.

m5-dial-screens.png
987.6 KB

m5Dial.png
308.2 KB
1substitutions:
2 name: "m5-dial"
3 wifi_ssid: !secret wifi_ssid
4 wifi_password: !secret wifi_password
5
6packages:
7 m5_tough_package:
8 url: https://github.com/SmartHome-yourself/m5-dial-for-esphome
9 ref: main
10 file: shys-m5-dial.yaml
11 refresh: 1s
12
13time:
14 - platform: homeassistant
15 id: homeassistant_time
16 timezone: Europe/Berlin
17
18shys_m5_dial:
19 name: Dial
20 time_component: homeassistant_time
21 screen_off_time: 45000
22 screensaver: clock
23 rotary_step_width: 5
24 long_press_duration: 1200
25 font: default
26 font_factor: 1
27
28 display_rotate: 2
29
30
31 devices:
32 lights:
33 - entity: light.DEIN_RGBWW_LIGHT
34 name: "RGBWW Light"
35 modes:
36 white_mode:
37 enable: true
38 rotary_step_width: 100
39 rgb_mode:
40 enable: true
41 rotary_step_width: 30
42 dimm_mode:
43 enable: true
44 rotary_step_width: 10
45 - entity: light.DEIN_RGB_LICHT
46 name: "RGB Light"
47 modes:
48 dimm_mode:
49 enable: true
50 rotary_step_width: 10
51 rgb_mode:
52 enable: true
53 rotary_step_width: 30
54 - entity: light.DEIN_DIMMBARES_LICHT
55 name: "Dimmable"
56 modes:
57 dimm_mode:
58 enable: true
59 - entity: light.DEIN_DIMM_WEISS_LICHT
60 name: "Tunable White"
61 modes:
62 dimm_mode:
63 enable: true
64 white_mode:
65 enable: true
66 rotary_step_width: 100
67
68 climates:
69 - entity: climate.DEINE_HEIZUNG
70 name: Buro
71 modes:
72 temp_mode:
73 min_temperature: 4
74 max_temperature: 30
75
76 covers:
77 - entity: cover.DEIN_COVER
78 name: Gardiene
79 modes:
80 position_mode:
81 rotary_step_width: 5
82
83 switches:
84 - entity: switch.DEIN_SCHALTER
85 name: Buro Licht
86
87 fans:
88 - entity: fan.DEIN_VENTILATOR
89 name: Ventilator
90 modes:
91 speed_mode:
92 changeable_direction: true
93 rotary_step_width: 10
94
95
96 media_player:
97 - entity: media_player.DEIN_AMAZON_ECHO
98 name: Amazon Echo
99 modes:
100 play_mode:
101 rotary_step_width: 10
102 source_mode:
103 rotary_step_width: 1
104 sources:
105 - name: 1Live
106 content_id: 1Live
107 content_type: TUNEIN
108 - name: WDR2
109 content_id: WDR 2 Rheinland
110 content_type: TUNEIN
111 - name: SunShine Live
112 content_id: SUNSHINE LIVE
113 content_type: TUNEIN
114 - name: SunShine House
115 content_id: SUNSHINE LIVE - House
116 content_type: TUNEIN
117
118 - entity: media_player.DEIN_DLNA_PLAYER
119 name: Radio
120 modes:
121 play_mode:
122 rotary_step_width: 10
123 source_mode:
124 rotary_step_width: 1
125 sources:
126 - name: 1Live
127 content_id: "https://wdr-1live-live.icecastssl.wdr.de/wdr/1live/live/mp3/128/stream.mp3"
128 content_type: custom
129 - name: WDR2
130 content_id: "http://wdr-wdr2-bergischesland.icecast.wdr.de/wdr/wdr2/bergischesland/mp3/128/stream.mp3"
131 content_type: custom
132 - name: Sun Shine Live
133 content_id: "http://sunshinelive.hoerradar.de/sunshinelive-live-mp3-hq"
134 content_type: custom
135 - name: Sun Shine House
136 content_id: "http://sunshinelive.hoerradar.de/sunshinelive-house-mp3-hq"
137 content_type: custom
138
139 lock:
140 - entity: lock.DEIN_SMARTLOCK
141 name: Haustür
142 modes:
143 lock_mode:
144 rotary_step_width: 1
145 open_on_button: trueLICENSE
1.0 KB