InfraTrans.ino 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. #include <IRremote.h>
  2. const int LOG_LEVEL = 1; // Just a general setting so we can control Serial output
  3. const int led = LED_BUILTIN; // On board LED, Pin 13
  4. const int RECV_PIN = 7; // IR Receiver
  5. String input = "";
  6. bool done = false;
  7. IRsend sendr; // Make Send Object, DANGER a fixed pin number is always used! (3)
  8. //IRrecv recvr(RECV_PIN); // Make Recever Object
  9. decode_results results; // Make Results Object to store received codes
  10. String result_0 = "";
  11. String result_1 = "";
  12. String result_2 = "";
  13. void setup() {
  14. // Initalize on board LED
  15. pinMode(led, OUTPUT);
  16. digitalWrite(led, LOW);
  17. // Initalize input routine
  18. input.reserve(60); // Max input of chars, to merge into string
  19. done = false;
  20. // Initalize IR connections
  21. //recvr.enableIRIn();
  22. //recvr.blink13(false); // Disabled Pin 13 blinking on IR signal received
  23. // Initalize Output routine
  24. Serial.begin(9600); // Serial COM's Port
  25. while(!Serial) { delay(10); } // Wait for conection
  26. Serial.println("Connected!");
  27. digitalWrite(led, LOW);
  28. }
  29. void sendCode(long code, int bit_len, bool repeat) {
  30. // If repeat the code then repeat it 3 times
  31. if(repeat) {
  32. for(int x = 0; x <= 3; x++) {
  33. sendr.sendNEC(code, bit_len);
  34. delay(40);
  35. }
  36. } else {
  37. // Else send the code then repeat a blank 2 times
  38. sendr.sendNEC(code, bit_len);
  39. delay(40);
  40. for(int x = 0; x <= 2; x++) {
  41. sendr.sendNEC(0xFFFFFFFF, 32);
  42. delay(40);
  43. }
  44. }
  45. }
  46. void parse_by_comma(String data) {
  47. result_0 = "";
  48. result_1 = "";
  49. result_2 = "";
  50. int at = 0;
  51. for(char c : data) {
  52. //Serial.println(c);
  53. if(at == 0) {
  54. if(c != ',') {
  55. result_0 += String(c);
  56. } else {
  57. at += 1;
  58. if (LOG_LEVEL >= 2) {
  59. Serial.print("> ");
  60. Serial.println(result_0);
  61. }
  62. }
  63. } else if(at == 1) {
  64. if(c != ',') {
  65. result_1 += String(c);
  66. } else {
  67. at += 1;
  68. if (LOG_LEVEL >= 2) {
  69. Serial.print("> ");
  70. Serial.println(result_1);
  71. }
  72. }
  73. } else if(at == 2) {
  74. result_2 += String(c);
  75. if (LOG_LEVEL >= 2) {
  76. Serial.print("> ");
  77. Serial.println(result_2);
  78. }
  79. break;
  80. }
  81. }
  82. }
  83. void parse_order() {
  84. long code;
  85. int bit_size;
  86. bool repeat;
  87. if(result_2.toInt() == 1) {
  88. repeat = true;
  89. } else {
  90. repeat = false;
  91. }
  92. // Converting a string into a long
  93. // https://stackoverflow.com/questions/29547115/how-to-convert-string-to-hex-value-in-c/29547549#29547549
  94. code = strtol(result_0.c_str(), NULL, 16);
  95. bit_size = result_1.toInt();
  96. if (result_0 != "" and result_1 != "" and result_2 != "") {
  97. sendCode(code, bit_size, repeat);
  98. if (LOG_LEVEL >= 1) {
  99. Serial.println(code);
  100. Serial.println(bit_size);
  101. Serial.println(repeat);
  102. }
  103. if (LOG_LEVEL >= 3) {
  104. Serial.print(result_0);
  105. Serial.print(",");
  106. Serial.print(result_1);
  107. Serial.print(",");
  108. Serial.println(result_2);
  109. }
  110. Serial.println("Sent!");
  111. } else {
  112. Serial.println("Failed to parse give command.");
  113. }
  114. }
  115. void action(String act){
  116. // Given String execute action
  117. if(act == "r") { // If it's r, let's repeat the last code we sent out
  118. parse_order();
  119. } else { // If it's not any other command then let's assume it's a new code
  120. parse_by_comma(act);
  121. parse_order();
  122. }
  123. /*if(act == "tv p"){
  124. sendCode(0x57E3E817, 32, true);
  125. for(int x = 0; x <= 3; x++) {
  126. sendr.sendNEC(0x57E3E817, 32);
  127. delay(40);
  128. }
  129. Serial.println("tv power");
  130. } else if(act == "m p"){
  131. sendCode(0x807F02FD, 32, false);
  132. Serial.println("movie power");
  133. }*/
  134. }
  135. void loop() {
  136. // Are we sending/receiving data?
  137. if(Serial.available() > 0) {
  138. char in = (char)Serial.read();
  139. if (LOG_LEVEL >= 3) {
  140. Serial.print(": ");
  141. Serial.println(in);
  142. }
  143. if (in == '\n') {
  144. done = true;
  145. } else {
  146. input += in;
  147. }
  148. }
  149. if(done){
  150. action(input); // Execute command / handle command
  151. input = "";
  152. done = false;
  153. }
  154. }