In this Blog we going to Interface IR Sensor Module with Arduino Micro-controller..

An infrared sensor is an electronic device, that emits in order to sense some aspects of the surroundings.

An IR sensor can measure the heat of an object as well as detects the motion.That monitor signal converted  to digital or analog   signal  send to the microcontroller.

Example:

We are going to Detect the Obstacle from IR Module on the serial monitor of Arduino.

Download this library from here

For information about how to add a custom library to the Arduino IDE and use examples from it, refer Adding Library To Arduino IDE in the Basics section.

Here, we have created a simplified sketch using the functions and header file provided by the Author of this library.

CONNECTION DIAGRAM:

CODING:


int buzzer = 13;

int led =12;

int sensor = 3;

void setup()

{

  pinMode(3,INPUT);

  pinMode(13,OUTPUT);

 pinMode(12,OUTPUT);

  Serial.begin(9600);

}

void loop()

if(digitalRead(3)==HIGH)

  {

    digitalWrite(13,HIGH);

    digitalWrite(12,HIGH);

    Serial.println(“buzzer ON”); 

}

  else

  {

    digitalWrite(13,LOW);

    digitalWrite(12,LOW);   

Serial.println(“buzzer OFF”);

  }

  delay(1000);

}

YoutubeVideo:


https://www.youtube.com/watch?v=YRWHuf0q8Hs

 Thanks & Regards

POWER INTEGRATED SOLUTIONS

No:10A/3,Radhakrishna Colony,

Sasthri Road, Thennur, Trichy-17.

Mail to: powerintegratedsolutions@gmail.com 

 Visit to:www.powerintegrated.in

Call us: 0431-4340778 / 7639385448 / 9566377454.

http://powerintegrated.in/

Power electronics-ECE projects-EEE projects-buck –boost –fly back –converters-‘push-pull’ converters-microcontroller-embedded-VLSI- FPGA based power electronics- multilevel inverters-inverters-converters-led bulbs-led street- light-manufacture-mini projects- SMPS –  engineering –polytechnic projects-innovation projects-embedded course- course-real time training-development training-industrial electronics – power system projects-power systems-–MATLAB –Simulink tools-using-power electronics-trichy projects center-course training- institute-grid power system –solar based projects- sepic converter-resonant converter-AC to DC converter – photovoltaic – thyristors – MOSFET- design- power converters-power inverters –grid systems- power distribution systems-isolated converters-non isolated converters- transformer less converters-electrical projects-electrical design-series inverters-parallel inverter-dual  converter-step up step down converters-ac regulator- cycloconverter -UPS-VFD drives-power supply-DIAC –TRIAC-IGBT-SCR-controlled –diode
http://powerintegrated.in/
#project centre in trichy #Home Automation in trichy.#Water Tank Automation in trichy.#embedded systems training in trichy.

#pcb design in trichy.levelinverterH-bridge multilevel inverter.cascaded multilevel inverter.inplanttraininghttp://powerintegrated.in/traininginfo.htmlhttp://powerintegrated.in/index.htmlhttp://www.powerintegrated.inEMF Electromagnetic Induction Magnetic Coil EEE principles Electromagnetic law. http://powerintegrated.in/ final year projectsfinal year projects Projects 2018-2019 Trichy Chennai Kumbakonam EEE ECE CSE MECH final year projects in trichyfinal year projects in tanjoreproject componentslow rate projects in trichylow rate final year projects.IEEE Projects 2018-2019 Trichy Chennai Kumbakonam EEE ECE CSE MECH project center in trichy IEEE Project Centers IEEE Project Centre in Trichy/chennai/kumbakonam Embedded systems projects in Trichy/chennai/kumbakonam Power Electronics Projects in Trichy/chennai/kumbakonam IEEE 2018-2019 Projects. #IEEE Projects 2018-2019 Power Integrated IEEE 2018 Embedded systems projects IEEE 2018 power electronics projects IEEE IOT projects IEEE arduino projects IEEE microcontroller projects IEEE robotics projects ieee power system projects best project center in trichy motor projects in trichy

In this Blog we going to Interface IR Sensor Module with Arduino Micro-controller..

An infrared sensor is an electronic device, that emits in order to sense some aspects of the surroundings. An IR sensor can measure the heat of an object as well as detects the motion.That monitor signal converted  to digital or analog   signal  send to the microcontroller.