mahdi syed
Published © Apache-2.0

Fan Control With IR Transmitter

Clone fan remotes and control your fan with IR signals!

BeginnerProtip30 minutes81
Fan Control With IR Transmitter

Things used in this project

Hardware components

IR transmitter (generic)
×1
IR receiver (generic)
×1
Arduino Mega 2560
Arduino Mega 2560
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Code

Receiver Code

Arduino
Use this to capture the IR signal from the remote.
#include <IRremote.h> // >v3.0.0

#define PIN_SEND 2




void setup()  
{  
  Serial.begin(9600);
  IrReceiver.begin(PIN_SEND); // Initializes the IR receiver object
}  
                               
void loop()  
{  
  
  if (IrReceiver.decode()) {
    Serial.println("Received something...");    

    // Print the raw data
    Serial.print("Raw Data: ");
    for (int i = 1; i < IrReceiver.decodedIRData.rawDataPtr->rawlen; i++) {
      Serial.print(IrReceiver.decodedIRData.rawDataPtr->rawbuf[i] * MICROS_PER_TICK, DEC);
      if (i < IrReceiver.decodedIRData.rawDataPtr->rawlen - 1) {
        Serial.print(", ");
      }
    }
    Serial.println();
    
    IrReceiver.resume(); // Important, enables to receive the next IR signal
  }  
   delay(250);
}  

Transmitter Code

Arduino
Use this to begin controlling the fan.
#include <IRremote.h> // >v3.0.0

#define PIN_SEND 2

//FAN
unsigned int rawData[] = {1200, 450, 1250, 450, 400, 1300, 1200, 450, 1200, 450, 400, 1300, 400, 1300, 350, 1300, 400, 1300, 1200, 450, 400, 1300, 350};
unsigned int rawDataLength = sizeof(rawData) / sizeof(rawData[0]);



void setup()  
{  
  Serial.begin(9600);
  IrSender.begin(PIN_SEND); // Initializes IR sender
}  
                               
void loop()  
{  
  IrSender.sendRaw(rawData, rawDataLength, 38);
  delay(250);
}  

Credits

mahdi syed
3 projects • 1 follower
I'm a passionate programmer with extensive experience in robotics, app design, web design, IOT, and AI.
Contact

Comments

Please log in or sign up to comment.