I have been playing with code to use a remote control at a basic level to turn LED's on and off. That was successful.
My question is .. I have a built a model Routmeatser from Hachette. I have modified it use momentary switches on the base to operate the lighting in the bus as the internal circuit board handles that. I would like to use the remote control and Arduino to act as the momentary switch on the base to short the wires to operate.
Can this be done and what code what I use on each button to achieve this?
This is an example of button 1 to turn on the led
case 0xFF30CF: digitalWrite(RED, HIGH); break; //BUTTON 1 TURN ON RED LED
Obviously I cant sent voltage down the line I just want it to activate a short using Button 1 if that makes sense.
i just want to push button 1 on the remote control and Arduino create a short between 2 switch wires for 2 seconds. As simple as that, im fairly new to arduino.