This arduino project utilizes the Arduino Uno board to record IR signals and translate from one signal to another. The result is a module that converts any remote into a universal remote.
Materials Needed:
- 1 Arduino UNO
- 1 IR receiver module
- 1 IR diode (940nm)
- 2 LEDs (Red, Green)
- 1 Momentary Push button
- 4 Resistors ( (3) 220ohm, (1)10kohm )
- Wires
*Current version only supports SONY output signals. Any input may still be used.
Upload the code to Arduino.
Notes:
Sony IR protocol uses a signal burst of 3 repeated codes with a delay of 10ms between each code
The current Sony signal output uses 20 bit codes. Modify program-code to change the bits.
- Ex. irsend.sendSony(code, 20); CHANGE TO irsend.sendSony(code,12);
- Use example IRDumpv2 code to read code specs