i found a Bluetooth speaker and wanted to do a little project with it.
Annoyingly, this speaker comes with an IR remote control and many functions are only available via the remote.
So I thought I could simply use ESPEasy to capture the IR signals and send them to the speaker.
I unsoldered the IR receiver and soldered it to the ESP and soldered a wire from one of the GPIO's of the ESP to the signal input. (See picture) Getting the signals from the remote works fine. Then I thought I could relay the signal to keep the remote functionality.
As I do not really know in which format to relay the data, I tried it in "raw" and also converted to hex.
Neither worked. Either the rule is wrong, or connecting the signal line from the speaker board directly to a GPIO, or both.
(I also tried IRSEND with an inverted output)
I would appreciate any help with this.
Here the rule:
Code: Select all
On IRin#IR Do
IRSEND,NEC,{tohex:%eventvalue1%}
IRSEND,NEC,%eventvalue1%
Endon