2018/02/25

Arduino - Switch celling light with TV remote (1/2)

 Preface

It must be happened to you before that in a very cold night watching TV or movie in bed and you were ready for bed. You turned off the TV or DVD player with remote control easily. However, for the celling light, you just had to get out of the bed to turn the light off. What a pain! 

After I searched the Internet, there are many examples out there suit for this purpose, such as IR receiver, relay module, and RGB LED shift hue and most of them have codes that I could utilize on this project.  

Quick Link

Material Needed

  • Arduino mini pro *1 
  • USB upload module *1 
  • Relay module (5V/10A/125V) * 1 
  • IR Receiver LED * 1 (Aixin AX-1838HS 38KHz * 1 / All 38KHz should work) 
  • RGB LED *2 
  • Resister 220 Om * 3
  • Few jump wires
  • Any TV or DVD remote you have at home
  • Breadboard * 1
It's not difficult to find these components on Amazon or eBay.

System Functionality

Assign two buttons on the remote to control the celling light. Remember to assign less frequently used buttons on the remote or you might accidentally activate the particular function on your appliances. :)
  • Button 1: Turn on/off
  • Button 2: Switch LED color hues (static or color shifting)

Schematic

This schematic is made with Fritzing. 
You can download it from its official website: www.fritzing.org


Connections

  • IR Receiver to Arduino pin 2
  • IR Receiver + to VCC
  • IR Receiver - to GND
  • Relay + to VCC
  • Relay - to GND
  • Relay to Arduino pin 8
  • RGB Red to Resistor to Arduino pin 3
  • RGB Green to Resistor to Arduino pin 5
  • RGB Blue to Resistor to Arduino pin 6

Check Remote IR code

You have to find out the remote button IR codes on your remotes and embed them in the source code below for this project to work.


For Example, my Sanyo TV remote has the following codes. As you can see, I have assigned two buttons for each feature to have a fall back plan.

  • Celling Light Switch function
    • Mute:irCode: 1CE318E7,  bits: 32  sanyoLight1
    • Channel minus :irCode: 1CE3D02F,  bits: 32  sanyoLight2
  • LED Switch function
    • Volume minus :irCode: 1CE3F00F,  bits: 32  sanyoLED1
    • CH View: irCode: 1CE352AD,  bits: 32 sanyoLED2

To find out the IR codes for you remote, please refer to my previous IR Repeater Tutorial (Part 2)

Source Code

  1. /*
  2. * Author: Stonez56
  3. * IRRemote for bedroom lighting control
  4. * Light buttons: Switch lights through the
  5. * cycle - 3, 5, 2, off with 2 types of remote
  6. * LED buttons: Switch display random color a, b, transistion, off
  7. */
  8.  
  9. #include <IRremote.h>
  10.  
  11. // Setting up pins
  12. // Setup pin 8 for relay.
  13. // For some reason, Pin 13 will cause relay to switch one time
  14. // when system powers on
  15. const int relay1Pin = 8;
  16. const int redPin = 3;
  17. const int greenPin = 5;
  18. const int bluePin = 6;
  19. const int irReceiverPin = 2;
  20.  
  21. // Milisecond to delay when shifting colors
  22. int colorShiftTime[] = {20, 10, 1, 50};
  23. int colorShiftTimeCounter = 0;
  24.  
  25. int myPins[] = {2, 4, 8, 3, 6};
  26. int LEDstatus = 0; // mode of LED or switch light
  27. /*
  28. * 0 = LED off
  29. * 1 = LED orange
  30. * 2 = LED color rotation
  31. * 3 = Relay Light swtich
  32. */
  33.  
  34. int relay1Status = 0; // Switch of the relay; either 1 or 0;
  35.  
  36.  
  37. IRrecv irrecv(irReceiverPin);
  38. decode_results results; // IR decode_results
  39.  
  40. unsigned int rgbColour[3]; //RGB LED array
  41.  
  42. unsigned int preCode = 0x0; //Previous remote code
  43. unsigned int currentCode = 0x0; //Current remote code
  44.  
  45. /* Define remote codes
  46. Remote A (iBit Remote)
  47. Switch
  48. - (L/R) irCode: 609E09F6, bits: 32 bitLigth1
  49. - Subtitle:irCode: 609E8877, bits: 32 bitLight2
  50. LED Switch
  51. - Sound change irCode: 609E42BD, bits: 32 bitLED1
  52. - Favorite channel:irCode: 609E728D, bits: 32 bitLED2
  53. LED Color speed
  54. - colorShiftTime: irCode:
  55.  
  56. */
  57. const unsigned long bitLight1 = 0x609E09F6;
  58. const unsigned long bitLight2 = 0x609E8877;
  59. const unsigned long bitLED1 = 0x609E42BD;
  60. const unsigned long bitLED2 = 0x609E728D;
  61. const unsigned long bitLEDspeed = 0x609EAA55;
  62. /*
  63. Remote B (Sanyo Remote)
  64. Switch
  65. - Mute:irCode: 1CE318E7, bits: 32 sanyoLight1
  66. - Channel minus :irCode: 1CE3D02F, bits: 32 sanyoLight2
  67. LED Switch
  68. - Volume minus :irCode: 1CE3F00F, bits: 32 sanyoLED1
  69. - CH View: irCode: 1CE352AD, bits: 32 sanyoLED2
  70. LED Color speed
  71. - colorShiftTime: irCode:
  72.  
  73. */
  74. const unsigned long sanyoLight1 = 0x1CE318E7;
  75. const unsigned long sanyoLight2 = 0x1CE3F00F;
  76. const unsigned long sanyoLED1 = 0x1CE352AD;
  77. const unsigned long sanyoLED2 = 0x1CE3D02F;
  78. const unsigned long sanyoLEDspeed = 0x1CE350AF;
  79.  
  80. void setup()
  81. {
  82. //////Serial.begin(9600);
  83. irrecv.enableIRIn(); // enable IR pin
  84. pinMode(relay1Pin, OUTPUT);
  85. // Start off with the LED off.
  86. ledOff();
  87. }
  88.  
  89. // Turn off LED
  90. void ledOff(){
  91. rgbColour[0] = 255;
  92. rgbColour[1] = 255;
  93. rgbColour[2] = 255;
  94. setColourRgb(rgbColour[0], rgbColour[1], rgbColour[2]);
  95.  
  96. preCode = currentCode;
  97. while(preCode == currentCode){
  98. currentCode = checkRemoteCode();
  99. // Check the code on Serial port
  100. Serial.print(rgbColour[0]); Serial.print(" | ");
  101. Serial.print(rgbColour[1]); Serial.print(" | ");
  102. Serial.println(rgbColour[2]);
  103. }
  104. }
  105.  
  106. /*
  107. * Turn on LED to Orange color
  108. */
  109. void ledOrange(){
  110. //LED color orange??
  111. rgbColour[0] = 65391;
  112. rgbColour[1] = 400;
  113. rgbColour[2] = 255;
  114. setColourRgb(rgbColour[0], rgbColour[1], rgbColour[2]);
  115.  
  116. preCode = currentCode;
  117. while(preCode == currentCode){
  118. currentCode = checkRemoteCode();
  119. }
  120.  
  121. }
  122.  
  123.  
  124. /*
  125. * Rotating RGB LED color
  126. */
  127. void colorRotation(){
  128. // Start off with red.
  129. rgbColour[0] = 0;
  130. rgbColour[1] = 255;
  131. rgbColour[2] = 255;
  132.  
  133. preCode = currentCode;
  134. // Choose the colours to increment and decrement.
  135. for (int decColour = 0; decColour < 3; decColour += 1) {
  136. int incColour = decColour == 2 ? 0 : decColour + 1;
  137. // cross-fade the two colours.
  138. for(int i = 0; i < 255; i += 1) {
  139. rgbColour[decColour] -= 1;
  140. rgbColour[incColour] += 1;
  141.  
  142. setColourRgb(rgbColour[0], rgbColour[1], rgbColour[2]);
  143. delay(colorShiftTime[colorShiftTimeCounter]);
  144. currentCode = checkRemoteCode();
  145.  
  146. /*
  147. Serial.print(" R:");Serial.print(rgbColour[0]);
  148. Serial.print(" G:");Serial.print(rgbColour[1]);
  149. Serial.print(" B: ");Serial.println(rgbColour[2]);
  150. */
  151. //if accepted new remote codes,
  152. // exit this function and back to the main loop;
  153. if(preCode != currentCode){
  154. return;
  155. }
  156. }
  157. }
  158. } // End of LED color rotation
  159.  
  160.  
  161. /* This turn on/off relay switch
  162. *
  163. */
  164. void switchRelay(){
  165. relay1Status = 1 - relay1Status;
  166. if(relay1Status == 0){
  167. digitalWrite(relay1Pin, HIGH);
  168. delay(500);
  169. }else{
  170. digitalWrite(relay1Pin, LOW);
  171. delay(500);
  172. }
  173. }
  174.  
  175. /* Check remote code and return a mode to be changed
  176. *
  177. */
  178. int checkRemoteCode(){
  179. if (irrecv.decode(&results)) { // Received IR code and decoded ok!
  180. // Print to Serial port for debug purposes
  181. Serial.print("Color shift time: ");
  182. Serial.print(colorShiftTime[colorShiftTimeCounter]);
  183. Serial.print(" irCode: ");
  184. Serial.print(results.value, HEX); // IR decode
  185. Serial.print(", bits: ");
  186. Serial.println(results.bits); // IR codes
  187. irrecv.resume(); // Continue to receive next IR code
  188. if(results.bits == 32){ //only 32bit code will be evaluated
  189. switch(results.value){
  190. /*All these buttons switch lights */
  191. case bitLight1:
  192. case bitLight2:
  193. case sanyoLight1:
  194. case sanyoLight2:
  195. case 0x992A2843: //Benq Remote Green button for test
  196. LEDstatus = 3; //switch relay;
  197.  
  198. break;
  199. case bitLED1:
  200. case bitLED2:
  201. case sanyoLED1:
  202. case sanyoLED2:
  203. //Check LEDstatus and switch to next mode
  204. LEDstatus += 1;
  205. if(LEDstatus >= 3){
  206. LEDstatus = 0; //LEDstatus only has 0,1,2 if == 3, reset it to 0;
  207. }
  208. break;
  209. case bitLEDspeed:
  210. case sanyoLEDspeed:
  211. colorShiftTimeCounter++;
  212. if(colorShiftTimeCounter==4){
  213. colorShiftTimeCounter=1; //only 4 elements, from 0~3
  214. }
  215. colorShiftTime[colorShiftTimeCounter];
  216. break;
  217. default:
  218. break;
  219. } //switch
  220. } // check 32bits
  221. } //end of get a remote code
  222.  
  223. return LEDstatus;
  224. }
  225.  
  226. void setColourRgb(unsigned int red, unsigned int green, unsigned int blue) {
  227. analogWrite(redPin, red);
  228. analogWrite(greenPin, green);
  229. analogWrite(bluePin, blue);
  230. }
  231.  
  232. void loop(){
  233. switch(LEDstatus){
  234. case 0:
  235. ledOff();
  236. break;
  237. case 1:
  238. ledOrange();
  239. break;
  240. case 2:
  241. colorRotation();
  242. break;
  243. case 3:
  244. switchRelay();
  245. LEDstatus = 99;
  246. break;
  247. default: // set it up to do nothing, but wait the remote code to activate
  248. break;
  249. }
  250. //constanly check new remote code
  251. LEDstatus = checkRemoteCode();
  252. //////Serial.print("LEDstatus: ");Serial.println(LEDstatus);
  253. } // end of loop
  254.  
Here is the prototype in the photo below.



In next tutorial, I will show you the 2nd phase to put everything together and install the whole system in the celling light.  See you soon!


2 comments:

  1. Hi Stonez,

    Great post I must say :)

    ReplyDelete
    Replies
    1. Thanks, Frank. I hope it's useful for your own projects.

      Delete