The integration of the 315 MHz RGB spotlight control was achieved by listening to the 315 MHz frames for each button on the remote control and then replaying these frames via a 315 MHz transmitter. Here is the ESPHome code:
# ─────────────────────────────────────────────
# 315 MHz — Émetteur spot LED RGB
# GPIO25
# ─────────────────────────────────────────────
remote_transmitter:
- id: rc_transmitter
pin:
number: GPIO25
carrier_duty_percent: 100%
non_blocking: false
# ─────────────────────────────────────────────
# BUTTON — Commande spot LED RGB 315 MHz
# transmit_raw — T=420µs mesuré sur télécommande d'origine
# Format : [bit_burst, bit_silence, ...] + [sync_burst, -sync_silence]
# ─────────────────────────────────────────────
button:
# 010101010101010111001111
- platform: template
name: Spotlight On
on_press:
- remote_transmitter.transmit_raw:
transmitter_id: rc_transmitter
code: [420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
1260,-420, 1260,-420, 420,-1260, 420,-1260, 1260,-420, 1260,-420, 1260,-420, 1260,-420,
420,-11400]
repeat:
times: 5
wait_time: 40ms
# 010101010101010100111100
- platform: template
name: Spotlight Off
on_press:
- remote_transmitter.transmit_raw:
transmitter_id: rc_transmitter
code: [420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
420,-1260, 420,-1260, 1260,-420, 1260,-420, 1260,-420, 1260,-420, 420,-1260, 420,-1260,
420,-11400]
repeat:
times: 5
wait_time: 40ms
# 010101010101010111110000
- platform: template
name: Spotlight Green
on_press:
- remote_transmitter.transmit_raw:
transmitter_id: rc_transmitter
code: [420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
1260,-420, 1260,-420, 1260,-420, 1260,-420, 420,-1260, 420,-1260, 420,-1260, 420,-1260,
420,-11400]
repeat:
times: 5
wait_time: 40ms
# 010101010101010100111111
- platform: template
name: Spotlight Red
on_press:
- remote_transmitter.transmit_raw:
transmitter_id: rc_transmitter
code: [420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
420,-1260, 420,-1260, 1260,-420, 1260,-420, 1260,-420, 1260,-420, 1260,-420, 1260,-420,
420,-11400]
repeat:
times: 5
wait_time: 40ms
# 010101010101010111000011
- platform: template
name: Spotlight Blue
on_press:
- remote_transmitter.transmit_raw:
transmitter_id: rc_transmitter
code: [420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
1260,-420, 1260,-420, 420,-1260, 420,-1260, 420,-1260, 420,-1260, 1260,-420, 1260,-420,
420,-11400]
repeat:
times: 5
wait_time: 40ms
# 010101010101010100001111
- platform: template
name: Spotlight Yellow
on_press:
- remote_transmitter.transmit_raw:
transmitter_id: rc_transmitter
code: [420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
420,-1260, 420,-1260, 420,-1260, 420,-1260, 1260,-420, 1260,-420, 1260,-420, 1260,-420,
420,-11400]
repeat:
times: 5
wait_time: 40ms
# 010101010101010111111100
- platform: template
name: Spotlight Cyan
on_press:
- remote_transmitter.transmit_raw:
transmitter_id: rc_transmitter
code: [420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
1260,-420, 1260,-420, 1260,-420, 1260,-420, 1260,-420, 1260,-420, 420,-1260, 420,-1260,
420,-11400]
repeat:
times: 5
wait_time: 40ms
# 010101010101010111110011
- platform: template
name: Spotlight Purple
on_press:
- remote_transmitter.transmit_raw:
transmitter_id: rc_transmitter
code: [420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
1260,-420, 1260,-420, 1260,-420, 1260,-420, 420,-1260, 420,-1260, 1260,-420, 1260,-420,
420,-11400]
repeat:
times: 5
wait_time: 40ms
# 010101010101010111111111
- platform: template
name: Spotlight White
on_press:
- remote_transmitter.transmit_raw:
transmitter_id: rc_transmitter
code: [420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
1260,-420, 1260,-420, 1260,-420, 1260,-420, 1260,-420, 1260,-420, 1260,-420, 1260,-420,
420,-11400]
repeat:
times: 5
wait_time: 40ms
# 010101010101010111000000
- platform: template
name: Spotlight Blue&Cyan
on_press:
- remote_transmitter.transmit_raw:
transmitter_id: rc_transmitter
code: [420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
1260,-420, 1260,-420, 420,-1260, 420,-1260, 420,-1260, 420,-1260, 420,-1260, 420,-1260,
420,-11400]
repeat:
times: 5
wait_time: 40ms
# 010101010101010100110011
- platform: template
name: Spotlight RAINBOW
on_press:
- remote_transmitter.transmit_raw:
transmitter_id: rc_transmitter
code: [420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
420,-1260, 420,-1260, 1260,-420, 1260,-420, 420,-1260, 420,-1260, 1260,-420, 1260,-420,
420,-11400]
repeat:
times: 5
wait_time: 40ms
# 010101010101010100000000
- platform: template
name: Spotlight FOUR SEASONS
on_press:
- remote_transmitter.transmit_raw:
transmitter_id: rc_transmitter
code: [420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
420,-1260, 420,-1260, 420,-1260, 420,-1260, 420,-1260, 420,-1260, 420,-1260, 420,-1260,
420,-11400]
repeat:
times: 5
wait_time: 40ms
# 010101010101010101000000
- platform: template
name: Spotlight DISCO
on_press:
- remote_transmitter.transmit_raw:
transmitter_id: rc_transmitter
code: [420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
420,-1260, 1260,-420, 420,-1260, 420,-1260, 420,-1260, 420,-1260, 420,-1260, 420,-1260,
420,-11400]
repeat:
times: 5
wait_time: 40ms
# 010101010101010100010000
- platform: template
name: Spotlight PARTY
on_press:
- remote_transmitter.transmit_raw:
transmitter_id: rc_transmitter
code: [420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420, 420,-1260, 1260,-420,
420,-1260, 420,-1260, 420,-1260, 1260,-420, 420,-1260, 420,-1260, 420,-1260, 420,-1260,
420,-11400]
repeat:
times: 5
wait_time: 40ms
