Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Das habe ich auch schon gesehen aber funktioniert irgendwie nicht. Ich komme da auch nicht weiter. Kann da keine Platform GPIO beutzen. Habe eine andere Lösung bekommen die funktioniert.Hi,
ich habe es selbst noch nicht realisiert, aber vll hilft dir die Doku von ESPHome weiter: siehe hier.
# LED blinken lassen
switch:
- platform: gpio
id: status_automatikled
pin: GPIO3
name: "Automatik LED"
- platform: template
name: "Schalter Automatik-LED blinkend"
optimistic: yes
id: automatik_led_blinkend
turn_on_action:
- while:
condition:
- lambda: 'return true;'
then:
- switch.turn_on: status_automatikled
- delay: 1000ms
- switch.turn_off: status_automatikled
- delay: 1000ms
turn_off_action:
- switch.turn_off: status_automatikled
- switch.turn_off: automatik_led_dauernd
- platform: template
name: "Schalter Automatik-LED dauer"
optimistic: yes
id: automatik_led_dauernd
turn_on_action:
then:
- switch.turn_on: status_automatikled
turn_off_action:
- switch.turn_off: status_automatikled