Guten Morgen, habe schon gesucht, aber nicht gefunden, was ich suche. Ich habe eine LED Deckenlampe mit IR Bedienung mit ESP32 und IR-LED “nachgerüstet” und habe jetzt vier Taster für EIN/AUS und HELLER/DUNKLER. Wie kann ich EIN/AUS mit einem “normalen” Schalter, wie z.B. meine Shellys schalten? Danke für Eure Hilfe,
juliett-victor
Hier ist noch der Ausschnitt aus dem ESP yaml:
> # Individual switches
> button:
> - platform: template
> name: "Deckenlampe an"
> on_press:
> - remote_transmitter.transmit_nec:
> address: 0x6B86
> command: 0xEF10
> command_repeats: 1
> - platform: template
> name: "Deckenlampe aus"
> on_press:
> - remote_transmitter.transmit_nec:
> address: 0x6B86
> command: 0xFD02
> command_repeats: 1
> - platform: template
> name: "heller"
> on_press:
> - remote_transmitter.transmit_nec:
> address: 0x6B86
> command: 0xF906
> command_repeats: 1
> - platform: template
> name: "dunkler"
> on_press:
> - remote_transmitter.transmit_nec:
> address: 0x6B86
> command: 0x8C73
> command_repeats: 1
by HarryP: Post formatiert