I have an ESPHome IR proxy transmitter setup (code below) and it works great through the ESPHome web server where I can enter raw IR data like -4500, 600, -2060, 505.
![My ESPHome IR proxy config/image]
However, I want Home Assistant to parse/send these raw IR code timings directly to ESPHome via automation/service call.
Questions:
- What's the exact service/action name to call from HA automation? (
esphome.mydevice.ir_proxy_transmit?) - How to format the raw timings array in the service data? (negative values for spaces?)
- Where can I find the correct service parameters in HA Developer Tools?
My ESPHome config:
Thanks!
# Example configuration entry
infrared:
# IR transmitter instance
- platform: ir_rf_proxy
name: IR Proxy Transmitter
id: ir_proxy_tx
remote_transmitter_id: ir_tx
# IR receiver instance
- platform: ir_rf_proxy
name: IR Proxy Receiver
id: ir_proxy_rx
remote_receiver_id: ir_rx




