Jehoon song
Published © CC BY-NC

You can turn on the TV at ANY TIME.

You can turn on the TV at ANY TIME.

IntermediateWork in progress5,195
You can turn on the TV at ANY TIME.

Things used in this project

Hardware components

Arduino Mega 2560
Arduino Mega 2560
×1
WIZwiki-W7500
WIZnet WIZwiki-W7500
×1
Arduino Ethernet shield
×1
IR receiver & transceiver sensor
×1

Hand tools and fabrication machines

mbed
mbed compiler

Story

Read more

Schematics

WIZwiki-W7500.png

sche1.PNG

Code

IR_receiver.ino

Plain text
//Sending ir codes over ethernet
//This sketch accept IR from an IR sensor connected to Pin 6 and sends over IP
// parts of the code for storing ir in to buffer is from  Ken Shirriff's ir recorder http://arcfn.com
//
//                       THIS ONE PICKS IR FROM A REMOTE
//
#include <IRremote.h>
#include <SPI.h>
#include <Ethernet.h>
 

int RECV_PIN = 6;
IRrecv irrecv(RECV_PIN);
decode_results results;
 
// Network settings 
byte mac[] = {  0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; //MAC
byte gateway[] = { 192,168,29,1 };// Gateway
byte ip[] = { 192,168,29,190 };  //ip if dhcp fails 
 
// IP of the Target arduino with ir emitter
IPAddress server(192,168,29,150);  
EthernetClient client;

char rawCodes[RAWBUF]; // The durations if raw
int codeLen; // The length of the code
//Get the infrared codes from remote

void storeCode(decode_results *results) {
//  NEC,00100000110111110001000011101111\n
  int count = results->rawlen;
  int j = 0;
  Serial.println("Received code");
  codeLen = results->rawlen - 1;
    for (int i = 3; i <= codeLen; i++) {
      if (i % 2) {
        Serial.print("");
      } 
      else {
        // Space
         if(results->rawbuf[i] > 25)
             rawCodes[j++] = '1';
          else
             rawCodes[j++] ='0';
      }
   }
    codeLen = j;
}

 
void setup()
{
  // For debug
  Serial.begin(9600);
  irrecv.enableIRIn(); // Start the receiver
  // Start ethernet
  Ethernet.begin(mac, ip, gateway);
  Serial.println("Initialised");
}

//sending the raw IR code over the ether net

void sendIR(decode_results *results)
{
    char tmp[50] = {'\0'};
    int n=0;
    // Send over HTTP
    if (client.connect(server, 5000))
    {
      Serial.println("connected");
 
       if (results->decode_type == UNKNOWN) {
         n = strlen("UNKNOWN,");
        strcpy(tmp,"UNKNOWN,");
      } 
      else if (results->decode_type == NEC) {
        n = strlen("NEC,");
        strcpy(tmp,"NEC,");
      } 
      else if (results->decode_type == SONY) {
        n = strlen("SONY,");
        strcpy(tmp,"SONY,");
      } 
      
      for (int i = n; i < codeLen+n; i++) {
        tmp[i] = rawCodes[i-n];
      }
     Serial.println(tmp);
     client.print(tmp);
     client.stop();
    } 
  
}
 

void loop()
{
  if (irrecv.decode(&results))
  {
    Serial.println(results.value, HEX);
    storeCode(&results);
    sendIR(&results);
    irrecv.resume(); // Receive the next value
  }
 
}

Credits

Jehoon song
4 projects • 6 followers
Contact

Comments

Please log in or sign up to comment.