InfraTrans.ino 4.5 KB

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