SlideShare a Scribd company logo
ARDUINO EXPERIMENTS
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 1
ARDUINO EXPERIMENTS
IR OBSTACLE SENSOR........................................................................................................................................................... 3
OVERVIEW............................................................................................................................................................................. 3
OBJECTIVE OF THE EXPERIMENT............................................................................................................................... 3
EXPERIMENTAL SETUP................................................................................................................................................... 3
IR SENSOR ARDUINO CODE........................................................................................................................................... 4
ARDUINO IDE – SERIAL MONITOR ............................................................................................................................. 5
GAS SENSOR............................................................................................................................................................................... 6
OVERVIEW............................................................................................................................................................................. 6
OBJECTIVE OF THE EXPERIMENT............................................................................................................................... 6
EXPERIMENTAL SETUP................................................................................................................................................... 6
GAS SENSOR ARDUINO CODE ....................................................................................................................................... 7
ARDUINO IDE – SERIAL MONITOR ............................................................................................................................. 8
FIRE SENSOR............................................................................................................................................................................. 9
OVERVIEW............................................................................................................................................................................. 9
OBJECTIVE OF THE EXPERIMENT............................................................................................................................... 9
EXPERIMENTAL SETUP................................................................................................................................................... 9
FIRE SENSOR ARDUINO CODE....................................................................................................................................10
ARDUINO IDE – SERIAL MONITOR ...........................................................................................................................11
RELAY SHIELD........................................................................................................................................................................12
OVERVIEW...........................................................................................................................................................................12
OBJECTIVE OF THE EXPERIMENT.............................................................................................................................12
EXPERIMENTAL SETUP.................................................................................................................................................12
RELAY SHIELD ARDUINO CODE.................................................................................................................................13
ARDUINO IDE – SERIAL MONITOR ...........................................................................................................................15
GSM SHIELD.............................................................................................................................................................................17
OVERVIEW...........................................................................................................................................................................17
OBJECTIVE OF THE EXPERIMENT.............................................................................................................................17
EXPERIMENTAL SETUP.................................................................................................................................................17
GSM SHIELD........................................................................................................................................................................18
BLUETOOTH RELAY SHIELD............................................................................................................................................19
OVERVIEW...........................................................................................................................................................................19
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 2
OBJECTIVE OF THE EXPERIMENT.............................................................................................................................19
EXPERIMENTAL SETUP.................................................................................................................................................19
RELAY SHIELD ARDUINO CODE.................................................................................................................................20
4-RELAY SWITCH BOARD ANDROID APPLICATION .........................................................................................23
LCD AND KEYPAD-SCREW SHIELD................................................................................................................................24
OVERVIEW...........................................................................................................................................................................24
OBJECTIVE OF THE EXPERIMENT.............................................................................................................................24
EXPERIMENTAL SETUP.................................................................................................................................................24
LCD AND KEYPAD-SCREW SHIELD ARDUINO CODE ........................................................................................26
HEART BEAT SENSOR.........................................................................................................................................................27
OVERVIEW...........................................................................................................................................................................27
OBJECTIVE...........................................................................................................................................................................27
EXPERIMENTAL SETUP.................................................................................................................................................27
HEART BEAT SENSOR ARDUINO CODE..................................................................................................................28
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 3
IR OBSTACLE SENSOR
OVERVIEW
Based on simple basic idea, the sensor is build which is easy to calibrate. This sensor provides a
detection range of 10 – 30 cm.This sensor can be used for most of the indoor applications where no
important ambient light is present. It follows the same principle as in all Infra – Red proximity sensors.
The basic idea is to send infra red light though IR – LED which reflects any object in front of the sensor.
OBJECTIVE OF THE EXPERIMENT
If object is detected pin 13 will go high (onboard LED ON) and "object detected" message will be
displayed in serial monitor
If object is not detected pin 13 will go low (onboard LED OFF) and "object not detected"
message will be displayed in serial monitor
EXPERIMENTAL SETUP
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 4
IR SENSOR ARDUINO CODE
/*
* Project name:
IR sensor
* Copyright
(c) Researchdesignlab.com
*description: if object is detected pin 13 will go high (onboard LED ON) and "object detected"
message will be displayed in serial monitor
if object is not detected pin 13 will go low (onboard LED OFF) and "object not detected"
message will be displayed in serial monitor
*/
void setup()
{
pinMode(7, INPUT); // initialize the IR sensor pin as an input:
pinMode(13, OUTPUT); // initialize pin 13 led as output
Serial.begin(9600); //baud rate
}
void loop()
{
if(digitalRead(7) == LOW) // if object detected IR sensor sends 0 to pin 7
{
Serial.println("OBJECT detected"); //"object detected" message will be displayed in serial monitor
digitalWrite(13, HIGH); //led pin 13 will be turned on
}
else
{
Serial.println("OBJECT not detected"); //"object not detected" message will be displayed in serial
monitor
digitalWrite(13, LOW); //led pin 13 will be turned off
}
delay(1000); //delay of one second
}
After compiling and uploading the above code, click on serial monitor in Ardunio ide to observe
the output.
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 5
ARDUINO IDE – SERIAL MONITOR
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 6
GAS SENSOR
OVERVIEW
The liquefied Petroleum Gas (LPG) sensor is suitable for sensing LPG (composed of mostly
propane and butane) concentration in the air. This can be used in Gas Leakage Detection equipment for
detecting the ISO-butane, Propane, LNG combustible Gases. If output goes above the preset range,
indication will be shown as high otherwise it will remain in idle condition
OBJECTIVE OF THE EXPERIMENT
If Gas is detected pin 13 will go high (onboard LED ON) and "gas detected" message will be
displayed in serial monitor
If Gas is not detected pin 13 will go low (onboard LED OFF) and "gas not detected" message will
be displayed in serial monitor
EXPERIMENTAL SETUP
(Note: for testing, Get a cigarette lighter and half press the lighter button to spill out the GAS.)
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 7
GAS SENSOR ARDUINO CODE
/*
* Project name:
Gas sensor
* Copyright
(c) Researchdesignlab.com
*description: if Gas is detected pin 13 will go high (onboard LED ON) and "gas detected" message will
be displayed in serial monitor
If Gas is not detected pin 13 will go low (onboard LED OFF) and "gas not detected"
message will be displayed in serial monitor
*/
void setup()
{
pinMode(7, INPUT); // initialize the GAS sensor pin as an input:
pinMode(13, OUTPUT); // initialize pin 13 led as output
Serial.begin(9600); //baud rate
}
void loop()
{
if(digitalRead(7) == HIGH) // if gas detected GAS sensor sends 0 to pin 7
{
Serial.println("gas detected"); //"gas detected" message will be displayed in serial monitor
digitalWrite(13, HIGH); //led pin 13 will be turned on
}
else
{
Serial.println("gas not detected"); //"gas not detected" message will be displayed in serial monitor
digitalWrite(13, LOW); //led pin 13 will be turned off
}
delay(1000); //delay of one second
}
After compiling and uploading the above code, click on serial monitor in Ardunio ide to observe
the output.
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 8
ARDUINO IDE – SERIAL MONITOR
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 9
FIRE SENSOR
OVERVIEW
The Fire sensor, as the name suggests, is used as a simple and compact device for protection
against fire. The module makes use of IR sensor and comparator to detect fire up to a range of 1 - 2
meters depending on fire density.
OBJECTIVE OF THE EXPERIMENT
If FIRE is detected pin 13 will go high (onboard LED ON) and "FIRE detected" message will be
displayed in serial monitor
If FIRE is not detected pin 13 will go low (onboard LED OFF) and "FIRE not detected" message
will be displayed in serial monitor
EXPERIMENTAL SETUP
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 10
FIRE SENSOR ARDUINO CODE
/*
* Project name:
FIRE sensor
* Copyright
(c) Researchdesignlab.com
*description: if FIRE is detected pin 13 will go high (onboard LED ON) and "FIRE detected" message
will be displayed in serial monitor
If FIRE is not detected pin 13 will go low (onboard LED OFF) and "FIRE not detected"
message will be displayed in serial monitor
*/
void setup()
{
pinMode(7, INPUT); // initialize the FIRE sensor pin as an input:
pinMode(13, OUTPUT); // initialize pin 13 led as output
Serial.begin(9600); //baud rate
}
void loop()
{
if(digitalRead(7) == HIGH) // if gas detected FIRE sensor sends 0 to pin 7
{
Serial.println("FIRE detected"); //"FIRE detected" message will be displayed in serial monitor
digitalWrite(13, HIGH); //led pin 13 will be turned on
}
else
{
Serial.println("FIRE not detected"); //"FIRE not detected" message will be displayed in serial
monitor
digitalWrite(13, LOW); //led pin 13 will be turned off
}
delay(1000); //delay of one second
}
After compiling and uploading the above code, click on serial monitor in Ardunio ide to observe
the output.
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 11
ARDUINO IDE – SERIAL MONITOR
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 12
RELAY SHIELD
OVERVIEW
The Relay shield is capable of controlling 4 relays. The max switching power could be
12A/250VAC or 15A/24VDC. It could be directly controlled by Arduino through digital IOs.
OBJECTIVE OF THE EXPERIMENT
Controlling relay shield from serial monitor (Arduino IDE)
EXPERIMENTAL SETUP
Note: Both USB and DC power supply must be plugged in.
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 13
RELAY SHIELD ARDUINO CODE
/*
* Project name:
Relay shield - arduino
* Copyright
(c) Researchdesignlab.com
*description:
Controlling relay shield from serial monitor
*/
char rec;
void setup()
{
pinMode(4, OUTPUT);
pinMode(5, OUTPUT);
pinMode(6, OUTPUT);
pinMode(7, OUTPUT);
Serial.begin(9600);
delay(1000);
Serial.println("=================================");
Serial.println("relays | ON command | OFF command");
Serial.println("=================================");
Serial.println("relay1 1N 1F");
Serial.println("relay2 2N 2F");
Serial.println("relay3 3N 3F");
Serial.println("relay4 4N 4F");
Serial.println("=================================");
}
void loop() // run over and over
{
while(!Serial.available());
rec=Serial.read();
if(rec=='1')
{
while(!Serial.available());
rec=Serial.read();
if(rec=='N')
{
digitalWrite(4, HIGH);
Serial.println("relay1 is ON");
}
else if(rec=='F')
{
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 14
digitalWrite(4, LOW);
Serial.println("relay1 is OFF");
}
}
else if(rec=='2')
{
while(!Serial.available());
rec=Serial.read();
if(rec=='N')
{
digitalWrite(5, HIGH);
Serial.println("relay2 is ON");
}
else if(rec=='F')
{
digitalWrite(5, LOW);
Serial.println("relay2 is OFF");
}
}
else if(rec=='3')
{
while(!Serial.available());
rec=Serial.read();
if(rec=='N')
{
digitalWrite(6, HIGH);
Serial.println("relay3 is ON");
}
else if(rec=='F')
{
digitalWrite(6, LOW);
Serial.println("relay3 is OFF");
}
}
else if(rec=='4')
{
while(!Serial.available());
rec=Serial.read();
if(rec=='N')
{
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 15
digitalWrite(7, HIGH);
Serial.println("relay4 is ON");
}
else if(rec=='F')
{
digitalWrite(7, LOW);
Serial.println("relay4 is OFF");
}
}
}
ARDUINO IDE – SERIAL MONITOR
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 16
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 17
GSM SHIELD
OVERVIEW
This is a very low cost and simple Arduino GSM and GPRS shield. We use the module SIMCom SIM900A.
The Shield connects your Arduino to the internet using the GPRS wireless network. Just plug this module
onto your Arduino board, plug in a SIM card from an operator offering GPRS coverage and follow a few
simple instructions to start controlling your world through the internet. You can also make/receive voice
calls (you will need an external speaker and microphone circuit) and send/receive SMS messages
OBJECTIVE OF THE EXPERIMENT
If GAS is detected pin 7 will go LOW and "GAS detected" message will be sent to destination
number.
EXPERIMENTAL SETUP
(Note: for testing, Get a cigarette lighter and half press the lighter button to spill out GAS.)
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 18
GSM SHIELD
/*
* Project name:
GSM Shield
* Copyright
(c) Researchdesignlab.com
*description: If GAS is detected pin 7 will go LOW and "GAS detected" message will be sent to
destination number
*/
void setup()
{
Serial.begin(9600); // SERIAL COMMUNICATION BAUD RATE
pinMode(7, INPUT); //INITIALIZE PIN 7 FOR GAS SENSOR OUTPUT
delay(5000);
}
void loop()
{
if(digitalRead(7)== LOW)
{
Serial.println("AT"); //TO CHECK MODEM
delay(1000);
Serial.println("AT+CMGF=1"); //TO CHANGE MESSAGE SENDING MODE
delay(1000);
Serial.println("AT+CMGS="0123456789""); //CHANGE TO DESTINATION NUMBER
delay(1000);
Serial.print("Gas detected"); //MESSAGE WILL SENT ONCE GAS IS DETECTED
Serial.write(26);
delay(1000);
}
}
Compile and upload the above code to arduino, then mount the GSM Shield onto arduino board
(place jumper on JP3) and plugin power supply DC 12V 1A.(remove USB cable).
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 19
BLUETOOTH RELAY SHIELD
OVERVIEW
Bluetooth technology is a short distance communication technology used by almost all phones
including smart phones and all laptops. This technology find very wide uses including that of Home &
Industrial automation.
The Relay shield is capable of controlling 4 relays. The max switching power could be
12A/250VAC or 15A/24VDC. It could be directly controlled by Arduino through digital IOs.
OBJECTIVE OF THE EXPERIMENT
Controlling relay shield from Bluetooth enabled device (Android APK)
EXPERIMENTAL SETUP
Note: remove USB after uploading the code, DC 12V 1A must be plugged in.
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 20
RELAY SHIELD ARDUINO CODE
/*
Software serial multple serial test
Receives from the hardware serial, sends to software serial.
Receives from software serial, sends to hardware serial.
The circuit:
* RX is digital pin 10 (connect to TX of other device)
* TX is digital pin 11 (connect to RX of other device)
Note:
Not all pins on the Mega and Mega 2560 support change interrupts,
so only the following can be used for RX:
10, 11, 12, 13, 50, 51, 52, 53, 62, 63, 64, 65, 66, 67, 68, 69
Not all pins on the Leonardo support change interrupts,
so only the following can be used for RX:
8, 9, 10, 11, 14 (MISO), 15 (SCK), 16 (MOSI).
Software serial multple serial test
Receives from the hardware serial, sends to software serial.
Receives from software serial, sends to hardware serial.
The circuit:
* RX is digital pin 2 (connect to TX of other device)
* TX is digital pin 3 (connect to RX of other device)
SENDING DATA FORMAT
1N TO ON RELAY1
1F TO OFF RELAY1
2N TO ON RELAY2
2F TO OFF RELAY2
3N TO ON RELAY3
3F TO OFF RELAY3
4N TO ON RELAY4
4F TO OFF RELAY4
This example code is in the public domain.
*/
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 21
#include <SoftwareSerial.h>
SoftwareSerial mySerial(2, 3); // RX, TX
int rec;
void setup()
{
pinMode(4, OUTPUT);
pinMode(5, OUTPUT);
pinMode(6, OUTPUT);
pinMode(7, OUTPUT);
mySerial.begin(9600);
}
void loop() // run over and over
{
while(!mySerial.available());
rec=mySerial.read();
if(rec=='1')
{
while(!mySerial.available());
rec=mySerial.read();
if(rec=='N')
digitalWrite(4, HIGH);
else if(rec=='F')
digitalWrite(4, LOW);
}
else if(rec=='2')
{
while(!mySerial.available());
rec=mySerial.read();
if(rec=='N')
digitalWrite(5, HIGH);
else if(rec=='F')
digitalWrite(5, LOW);
}
else if(rec=='3')
{
while(!mySerial.available());
rec=mySerial.read();
if(rec=='N')
digitalWrite(6, HIGH);
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 22
else if(rec=='F')
digitalWrite(6, LOW);
}
else if(rec=='4')
{
while(!mySerial.available());
rec=mySerial.read();
if(rec=='N')
digitalWrite(7, HIGH);
else if(rec=='F')
digitalWrite(7, LOW);
}
}
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 23
4-RELAY SWITCH BOARD ANDROID APPLICATION
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 24
LCD-SCREW SHIELD
OVERVIEW
One of the basic interfacing requirements for the hobbyists or electronics enthusiasts is I/P
(keypad) and O/P (LCD display) for prototype applications. This shield uses minimum number I/O’s that
is 2 bits(D0 and D1) for LCD data . 5 input key switches (Navigation keys), when it's activated serial data
will be sent to pin D0 by internal 2 line LCD controller. Each key has been pulled up to a different
voltage level, so a different voltage will be generated every time a user selects a key. This voltage could
be read by the analog pin of internal 2 line LCD controller on the board. Hence saves the no of I/O pins.
The backlight of the LCD could be controlled by setting PWM (Pin D10) by adding a few lines of code.
OBJECTIVE OF THE EXPERIMENT
If Gas is detected by sensor ,”gas detected” message will be displayed in LCD else ”gas not
detected” message will be displayed in LCD.
EXPERIMENTAL SETUP
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 25
(Note: for testing, Get a cigarette lighter and half press the lighter button to spill out the GAS.)
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 26
LCD AND KEYPAD-SCREW SHIELD ARDUINO CODE
/*
* Project name:
LCD KEYPAD Shield
* Copyright
(c) Researchdesignlab.com
* Description:
If Gas is detected by sensor ,”gas detected” message will be displayed in LCD
Else ”gas not detected” message will be displayed in LCD.
The circuit:
* LCD RS pin to digital pin 12
* LCD Enable pin to digital pin 11
* LCD D4 pin to digital pin 5
* LCD D5 pin to digital pin 4
* LCD D6 pin to digital pin 3
* LCD D7 pin to digital pin 2
* LCD R/W pin to ground
* 10K resistor:
* ends to +5V and ground
* wiper to LCD VO pin (pin 3)
*/
#include <LiquidCrystal.h> // include the library code:
int sensorValue = 0; // value read from the keypad
LiquidCrystal lcd(12, 11, 5, 4, 3, 2); // initialize the library with the numbers of the interface pins
int sensorPin = A0;
void setup()
{
lcd.begin(16, 2); // set up the LCD's number of columns and rows:
pinMode(7, INPUT );
delay(2000);
}
void loop() {
lcd.clear(); // clear lcd display
lcd.setCursor(0, 0); // set the cursor to column 0, line 0
lcd.print("LCD KEYPAD Shield");
lcd.setCursor(0, 1); // set the cursor to column 0, line 1
if(digitalRead(7) == HIGH)
lcd.print("GAS DETECTED");
else
lcd.print("GAS NOT DETECTED");
delay(500);
}
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 27
HEART BEAT SENSOR
OVERVIEW
The Heart Beat Sensor is designed to provide digital output of heart beat when a finger is placed
on it. When the Heart detector starts working, the top most LED will starts flashing with every
heartbeat. The output of this sensor can be connected to Micro Controller directly to measure the heart
beat per minute (BPM) rate. It functions on the principle of light modulation by blood flow through the
nerves of the finger at every pulse. The module output mode, Digital output mode is simple, Serial
Output is with exact readings
OBJECTIVE
To measure heart beats per minute.
EXPERIMENTAL SETUP
ARDUINO EXPERIMENTS
www.researchdesignlab.com Page 28
HEART BEAT SENSOR ARDUINO CODE
byte byteRead;
void setup()
{
Serial.begin(9600); //BAUD RATE
Serial.println("===================");
Serial.println("heat beat sensor");
Serial.println("===================");
}
void loop()
{
if (Serial.available())
{
int byteRead = Serial.parseInt(); // CONVERTING ASCII TO INT
if(!byteRead == 0)
Serial.println(byteRead);
}
}
ARDUINO IDE-SERIAL MONTOR

More Related Content

What's hot

Sokkia spectrum survey field reference manual
Sokkia spectrum survey field reference manualSokkia spectrum survey field reference manual
Sokkia spectrum survey field reference manual
Land Surveyors United Community
 
Bsides
BsidesBsides
Bsides
m j
 
Untrasonice Leak Detector
Untrasonice Leak DetectorUntrasonice Leak Detector
Untrasonice Leak Detector
videoborescope
 
Faronics Anti-executable Enterprise User guide
Faronics Anti-executable Enterprise User guideFaronics Anti-executable Enterprise User guide
Faronics Anti-executable Enterprise User guide
Faronics
 
Spartan 3e用户手册
Spartan 3e用户手册Spartan 3e用户手册
Spartan 3e用户手册
zhaojk90
 
Sokkia sdr-8100 operations manual
Sokkia sdr-8100 operations manualSokkia sdr-8100 operations manual
Sokkia sdr-8100 operations manual
Land Surveyors United Community
 
Em
EmEm
Fluke Corportation Catalogue - PAT Portable Appliance Testers, Clamp Meters, ...
Fluke Corportation Catalogue - PAT Portable Appliance Testers, Clamp Meters, ...Fluke Corportation Catalogue - PAT Portable Appliance Testers, Clamp Meters, ...
Fluke Corportation Catalogue - PAT Portable Appliance Testers, Clamp Meters, ...
Thorne & Derrick International
 
Pro 4 manual
Pro 4 manualPro 4 manual
Pro 4 manual
Ricardo Assunção
 
Arduino: Crea bots y gadgets Arduino aprendiendo mediante el descubrimiento d...
Arduino: Crea bots y gadgets Arduino aprendiendo mediante el descubrimiento d...Arduino: Crea bots y gadgets Arduino aprendiendo mediante el descubrimiento d...
Arduino: Crea bots y gadgets Arduino aprendiendo mediante el descubrimiento d...
SANTIAGO PABLO ALBERTO
 
Dynasonics i sonic 4000 manual badger meter_open-channel flow meter
Dynasonics i sonic 4000 manual badger meter_open-channel flow meterDynasonics i sonic 4000 manual badger meter_open-channel flow meter
Dynasonics i sonic 4000 manual badger meter_open-channel flow meter
ENVIMART
 
Harmonic detection-and-filtering schneider
Harmonic detection-and-filtering schneiderHarmonic detection-and-filtering schneider
Harmonic detection-and-filtering schneider
Sergio Augusto Amador López
 
Digital Watchdog DWBJCUBE2TLX User Manual
Digital Watchdog DWBJCUBE2TLX User ManualDigital Watchdog DWBJCUBE2TLX User Manual
Digital Watchdog DWBJCUBE2TLX User Manual
JMAC Supply
 
XRumer user manual guide
XRumer user manual guideXRumer user manual guide
XRumer user manual guide
Regis Wa
 
Dynasonics u500w manual badger meter ultrasonic cold water meter_product line 2
Dynasonics u500w manual badger meter ultrasonic cold water meter_product line 2Dynasonics u500w manual badger meter ultrasonic cold water meter_product line 2
Dynasonics u500w manual badger meter ultrasonic cold water meter_product line 2
ENVIMART
 
FPGA
FPGAFPGA
Dell Vostro 3568 Laptops Trần Phát
Dell Vostro 3568 Laptops Trần PhátDell Vostro 3568 Laptops Trần Phát
Dell Vostro 3568 Laptops Trần Phát
LAPTOP TRẦN PHÁT
 

What's hot (17)

Sokkia spectrum survey field reference manual
Sokkia spectrum survey field reference manualSokkia spectrum survey field reference manual
Sokkia spectrum survey field reference manual
 
Bsides
BsidesBsides
Bsides
 
Untrasonice Leak Detector
Untrasonice Leak DetectorUntrasonice Leak Detector
Untrasonice Leak Detector
 
Faronics Anti-executable Enterprise User guide
Faronics Anti-executable Enterprise User guideFaronics Anti-executable Enterprise User guide
Faronics Anti-executable Enterprise User guide
 
Spartan 3e用户手册
Spartan 3e用户手册Spartan 3e用户手册
Spartan 3e用户手册
 
Sokkia sdr-8100 operations manual
Sokkia sdr-8100 operations manualSokkia sdr-8100 operations manual
Sokkia sdr-8100 operations manual
 
Em
EmEm
Em
 
Fluke Corportation Catalogue - PAT Portable Appliance Testers, Clamp Meters, ...
Fluke Corportation Catalogue - PAT Portable Appliance Testers, Clamp Meters, ...Fluke Corportation Catalogue - PAT Portable Appliance Testers, Clamp Meters, ...
Fluke Corportation Catalogue - PAT Portable Appliance Testers, Clamp Meters, ...
 
Pro 4 manual
Pro 4 manualPro 4 manual
Pro 4 manual
 
Arduino: Crea bots y gadgets Arduino aprendiendo mediante el descubrimiento d...
Arduino: Crea bots y gadgets Arduino aprendiendo mediante el descubrimiento d...Arduino: Crea bots y gadgets Arduino aprendiendo mediante el descubrimiento d...
Arduino: Crea bots y gadgets Arduino aprendiendo mediante el descubrimiento d...
 
Dynasonics i sonic 4000 manual badger meter_open-channel flow meter
Dynasonics i sonic 4000 manual badger meter_open-channel flow meterDynasonics i sonic 4000 manual badger meter_open-channel flow meter
Dynasonics i sonic 4000 manual badger meter_open-channel flow meter
 
Harmonic detection-and-filtering schneider
Harmonic detection-and-filtering schneiderHarmonic detection-and-filtering schneider
Harmonic detection-and-filtering schneider
 
Digital Watchdog DWBJCUBE2TLX User Manual
Digital Watchdog DWBJCUBE2TLX User ManualDigital Watchdog DWBJCUBE2TLX User Manual
Digital Watchdog DWBJCUBE2TLX User Manual
 
XRumer user manual guide
XRumer user manual guideXRumer user manual guide
XRumer user manual guide
 
Dynasonics u500w manual badger meter ultrasonic cold water meter_product line 2
Dynasonics u500w manual badger meter ultrasonic cold water meter_product line 2Dynasonics u500w manual badger meter ultrasonic cold water meter_product line 2
Dynasonics u500w manual badger meter ultrasonic cold water meter_product line 2
 
FPGA
FPGAFPGA
FPGA
 
Dell Vostro 3568 Laptops Trần Phát
Dell Vostro 3568 Laptops Trần PhátDell Vostro 3568 Laptops Trần Phát
Dell Vostro 3568 Laptops Trần Phát
 

Viewers also liked

Digital and Analog IR Sensor Working and Cocepts
Digital and Analog IR Sensor Working and Cocepts Digital and Analog IR Sensor Working and Cocepts
Digital and Analog IR Sensor Working and Cocepts
Robo India
 
Therft alert system
Therft alert systemTherft alert system
Therft alert system
Badal Tushar
 
Smart Sensor
Smart SensorSmart Sensor
Smart Sensor
Pawan Bahuguna
 
Sensors
SensorsSensors
Sensors
Nitesh Singh
 
Infrared IR Sensor Circuit Diagram and Working Principle
Infrared IR Sensor Circuit Diagram and Working PrincipleInfrared IR Sensor Circuit Diagram and Working Principle
Infrared IR Sensor Circuit Diagram and Working Principle
elprocus
 
Ir sensor
Ir sensorIr sensor

Viewers also liked (6)

Digital and Analog IR Sensor Working and Cocepts
Digital and Analog IR Sensor Working and Cocepts Digital and Analog IR Sensor Working and Cocepts
Digital and Analog IR Sensor Working and Cocepts
 
Therft alert system
Therft alert systemTherft alert system
Therft alert system
 
Smart Sensor
Smart SensorSmart Sensor
Smart Sensor
 
Sensors
SensorsSensors
Sensors
 
Infrared IR Sensor Circuit Diagram and Working Principle
Infrared IR Sensor Circuit Diagram and Working PrincipleInfrared IR Sensor Circuit Diagram and Working Principle
Infrared IR Sensor Circuit Diagram and Working Principle
 
Ir sensor
Ir sensorIr sensor
Ir sensor
 

Similar to Arduino experiments

Arduino experiments.pdf
Arduino experiments.pdfArduino experiments.pdf
Arduino experiments.pdf
ssuser0e9cc4
 
Analog Light Intensity Sensor
Analog Light Intensity Sensor Analog Light Intensity Sensor
Analog Light Intensity Sensor
Raghav Shetty
 
Analog Heart Beat Sensor
Analog Heart Beat SensorAnalog Heart Beat Sensor
Analog Heart Beat Sensor
Raghav Shetty
 
Instruction Manual | ATN OTS-XLT | Optics Trade
Instruction Manual | ATN OTS-XLT | Optics TradeInstruction Manual | ATN OTS-XLT | Optics Trade
Instruction Manual | ATN OTS-XLT | Optics Trade
Optics-Trade
 
scarlett2i4-user-guide.pdf
scarlett2i4-user-guide.pdfscarlett2i4-user-guide.pdf
scarlett2i4-user-guide.pdf
ssusera78a1c
 
Wireshark user's guide
Wireshark user's guideWireshark user's guide
Wireshark user's guide
Gió Lào
 
Dynasonics is 6000 manual badger meter-doppler stationary area velocity flow ...
Dynasonics is 6000 manual badger meter-doppler stationary area velocity flow ...Dynasonics is 6000 manual badger meter-doppler stationary area velocity flow ...
Dynasonics is 6000 manual badger meter-doppler stationary area velocity flow ...
ENVIMART
 
Sokkia set6 manual
Sokkia set6 manualSokkia set6 manual
final report (parking project).pdf
final report (parking project).pdffinal report (parking project).pdf
final report (parking project).pdf
gamefacegamer
 
Ls9208 prg
Ls9208 prgLs9208 prg
Ls9208 prg
Telectronica
 
Obstacle_Avoidance_Robot_Coruse_Project_ECET402_Mechatronics_FinalCopy
Obstacle_Avoidance_Robot_Coruse_Project_ECET402_Mechatronics_FinalCopyObstacle_Avoidance_Robot_Coruse_Project_ECET402_Mechatronics_FinalCopy
Obstacle_Avoidance_Robot_Coruse_Project_ECET402_Mechatronics_FinalCopy
Elijah Barner
 
Face detection and recognition
Face detection and recognitionFace detection and recognition
Face detection and recognition
Derek Budde
 
Smart classethernet user_manual_en
Smart classethernet user_manual_enSmart classethernet user_manual_en
Smart classethernet user_manual_en
Ikundu Gatambia
 
Smart classethernet user_manual_en
Smart classethernet user_manual_enSmart classethernet user_manual_en
Smart classethernet user_manual_en
Juan Milton Garduno Rubio
 
Arduino: Arduino para dummies 2 edición por Wiley Brand parte 1
Arduino: Arduino para dummies 2 edición por Wiley Brand parte 1Arduino: Arduino para dummies 2 edición por Wiley Brand parte 1
Arduino: Arduino para dummies 2 edición por Wiley Brand parte 1
SANTIAGO PABLO ALBERTO
 
Original
OriginalOriginal
Original
diazdavidh
 
@author Jane Programmer @cwid 123 45 678 @class.docx
   @author Jane Programmer  @cwid   123 45 678  @class.docx   @author Jane Programmer  @cwid   123 45 678  @class.docx
@author Jane Programmer @cwid 123 45 678 @class.docx
ShiraPrater50
 
@author Jane Programmer @cwid 123 45 678 @class
   @author Jane Programmer  @cwid   123 45 678  @class   @author Jane Programmer  @cwid   123 45 678  @class
@author Jane Programmer @cwid 123 45 678 @class
troutmanboris
 
Alda tel. manual setting
Alda tel. manual settingAlda tel. manual setting
Alda tel. manual setting
jeffrey alda
 
cpd55pranendu pradhan cccccccccccccc466.pdf
cpd55pranendu pradhan cccccccccccccc466.pdfcpd55pranendu pradhan cccccccccccccc466.pdf
cpd55pranendu pradhan cccccccccccccc466.pdf
pranendupradhan0
 

Similar to Arduino experiments (20)

Arduino experiments.pdf
Arduino experiments.pdfArduino experiments.pdf
Arduino experiments.pdf
 
Analog Light Intensity Sensor
Analog Light Intensity Sensor Analog Light Intensity Sensor
Analog Light Intensity Sensor
 
Analog Heart Beat Sensor
Analog Heart Beat SensorAnalog Heart Beat Sensor
Analog Heart Beat Sensor
 
Instruction Manual | ATN OTS-XLT | Optics Trade
Instruction Manual | ATN OTS-XLT | Optics TradeInstruction Manual | ATN OTS-XLT | Optics Trade
Instruction Manual | ATN OTS-XLT | Optics Trade
 
scarlett2i4-user-guide.pdf
scarlett2i4-user-guide.pdfscarlett2i4-user-guide.pdf
scarlett2i4-user-guide.pdf
 
Wireshark user's guide
Wireshark user's guideWireshark user's guide
Wireshark user's guide
 
Dynasonics is 6000 manual badger meter-doppler stationary area velocity flow ...
Dynasonics is 6000 manual badger meter-doppler stationary area velocity flow ...Dynasonics is 6000 manual badger meter-doppler stationary area velocity flow ...
Dynasonics is 6000 manual badger meter-doppler stationary area velocity flow ...
 
Sokkia set6 manual
Sokkia set6 manualSokkia set6 manual
Sokkia set6 manual
 
final report (parking project).pdf
final report (parking project).pdffinal report (parking project).pdf
final report (parking project).pdf
 
Ls9208 prg
Ls9208 prgLs9208 prg
Ls9208 prg
 
Obstacle_Avoidance_Robot_Coruse_Project_ECET402_Mechatronics_FinalCopy
Obstacle_Avoidance_Robot_Coruse_Project_ECET402_Mechatronics_FinalCopyObstacle_Avoidance_Robot_Coruse_Project_ECET402_Mechatronics_FinalCopy
Obstacle_Avoidance_Robot_Coruse_Project_ECET402_Mechatronics_FinalCopy
 
Face detection and recognition
Face detection and recognitionFace detection and recognition
Face detection and recognition
 
Smart classethernet user_manual_en
Smart classethernet user_manual_enSmart classethernet user_manual_en
Smart classethernet user_manual_en
 
Smart classethernet user_manual_en
Smart classethernet user_manual_enSmart classethernet user_manual_en
Smart classethernet user_manual_en
 
Arduino: Arduino para dummies 2 edición por Wiley Brand parte 1
Arduino: Arduino para dummies 2 edición por Wiley Brand parte 1Arduino: Arduino para dummies 2 edición por Wiley Brand parte 1
Arduino: Arduino para dummies 2 edición por Wiley Brand parte 1
 
Original
OriginalOriginal
Original
 
@author Jane Programmer @cwid 123 45 678 @class.docx
   @author Jane Programmer  @cwid   123 45 678  @class.docx   @author Jane Programmer  @cwid   123 45 678  @class.docx
@author Jane Programmer @cwid 123 45 678 @class.docx
 
@author Jane Programmer @cwid 123 45 678 @class
   @author Jane Programmer  @cwid   123 45 678  @class   @author Jane Programmer  @cwid   123 45 678  @class
@author Jane Programmer @cwid 123 45 678 @class
 
Alda tel. manual setting
Alda tel. manual settingAlda tel. manual setting
Alda tel. manual setting
 
cpd55pranendu pradhan cccccccccccccc466.pdf
cpd55pranendu pradhan cccccccccccccc466.pdfcpd55pranendu pradhan cccccccccccccc466.pdf
cpd55pranendu pradhan cccccccccccccc466.pdf
 

More from Raghav Shetty

8 Channel Relay Board-Bluetooth
8 Channel Relay Board-Bluetooth8 Channel Relay Board-Bluetooth
8 Channel Relay Board-Bluetooth
Raghav Shetty
 
4 Channel Relay Board 5V-Bluetooth Compatible for Arduino
4 Channel Relay Board 5V-Bluetooth Compatible for Arduino4 Channel Relay Board 5V-Bluetooth Compatible for Arduino
4 Channel Relay Board 5V-Bluetooth Compatible for Arduino
Raghav Shetty
 
4 Channel Relay Board 12V-Compatible for Arduino
4 Channel Relay Board 12V-Compatible for Arduino4 Channel Relay Board 12V-Compatible for Arduino
4 Channel Relay Board 12V-Compatible for Arduino
Raghav Shetty
 
8 Channel Relay Board-Rs485
8 Channel Relay Board-Rs485 8 Channel Relay Board-Rs485
8 Channel Relay Board-Rs485
Raghav Shetty
 
Xbee X-CTU Software
Xbee X-CTU SoftwareXbee X-CTU Software
Xbee X-CTU Software
Raghav Shetty
 
Digitla Vibration Sensor
Digitla Vibration SensorDigitla Vibration Sensor
Digitla Vibration Sensor
Raghav Shetty
 
Thermal Printer
Thermal PrinterThermal Printer
Thermal Printer
Raghav Shetty
 
Digital Soil Moisture Sensor
Digital Soil Moisture SensorDigital Soil Moisture Sensor
Digital Soil Moisture Sensor
Raghav Shetty
 
Micro SD Memory Card Interface for 5V MCU
Micro SD Memory Card Interface for 5V MCUMicro SD Memory Card Interface for 5V MCU
Micro SD Memory Card Interface for 5V MCU
Raghav Shetty
 
Micro SD Memory Card Interface for 3.3V MCU
Micro SD Memory Card Interface for 3.3V MCUMicro SD Memory Card Interface for 3.3V MCU
Micro SD Memory Card Interface for 3.3V MCU
Raghav Shetty
 
Regulated Power Supply
Regulated Power Supply Regulated Power Supply
Regulated Power Supply
Raghav Shetty
 
PIC Project Board
PIC Project BoardPIC Project Board
PIC Project Board
Raghav Shetty
 
8 Channel Bi Directional Logic Level Converter
8 Channel Bi Directional Logic Level Converter8 Channel Bi Directional Logic Level Converter
8 Channel Bi Directional Logic Level Converter
Raghav Shetty
 
LCD Keypad Shield
LCD Keypad ShieldLCD Keypad Shield
LCD Keypad Shield
Raghav Shetty
 
L298 Motor Driver
L298 Motor DriverL298 Motor Driver
L298 Motor Driver
Raghav Shetty
 
Joystick Shield
Joystick ShieldJoystick Shield
Joystick Shield
Raghav Shetty
 
Force Sensor
Force SensorForce Sensor
Force Sensor
Raghav Shetty
 
Plastic REED Float Switch
Plastic REED Float SwitchPlastic REED Float Switch
Plastic REED Float Switch
Raghav Shetty
 
Flex Sensor
Flex SensorFlex Sensor
Flex Sensor
Raghav Shetty
 
Serial EEPROM
Serial EEPROMSerial EEPROM
Serial EEPROM
Raghav Shetty
 

More from Raghav Shetty (20)

8 Channel Relay Board-Bluetooth
8 Channel Relay Board-Bluetooth8 Channel Relay Board-Bluetooth
8 Channel Relay Board-Bluetooth
 
4 Channel Relay Board 5V-Bluetooth Compatible for Arduino
4 Channel Relay Board 5V-Bluetooth Compatible for Arduino4 Channel Relay Board 5V-Bluetooth Compatible for Arduino
4 Channel Relay Board 5V-Bluetooth Compatible for Arduino
 
4 Channel Relay Board 12V-Compatible for Arduino
4 Channel Relay Board 12V-Compatible for Arduino4 Channel Relay Board 12V-Compatible for Arduino
4 Channel Relay Board 12V-Compatible for Arduino
 
8 Channel Relay Board-Rs485
8 Channel Relay Board-Rs485 8 Channel Relay Board-Rs485
8 Channel Relay Board-Rs485
 
Xbee X-CTU Software
Xbee X-CTU SoftwareXbee X-CTU Software
Xbee X-CTU Software
 
Digitla Vibration Sensor
Digitla Vibration SensorDigitla Vibration Sensor
Digitla Vibration Sensor
 
Thermal Printer
Thermal PrinterThermal Printer
Thermal Printer
 
Digital Soil Moisture Sensor
Digital Soil Moisture SensorDigital Soil Moisture Sensor
Digital Soil Moisture Sensor
 
Micro SD Memory Card Interface for 5V MCU
Micro SD Memory Card Interface for 5V MCUMicro SD Memory Card Interface for 5V MCU
Micro SD Memory Card Interface for 5V MCU
 
Micro SD Memory Card Interface for 3.3V MCU
Micro SD Memory Card Interface for 3.3V MCUMicro SD Memory Card Interface for 3.3V MCU
Micro SD Memory Card Interface for 3.3V MCU
 
Regulated Power Supply
Regulated Power Supply Regulated Power Supply
Regulated Power Supply
 
PIC Project Board
PIC Project BoardPIC Project Board
PIC Project Board
 
8 Channel Bi Directional Logic Level Converter
8 Channel Bi Directional Logic Level Converter8 Channel Bi Directional Logic Level Converter
8 Channel Bi Directional Logic Level Converter
 
LCD Keypad Shield
LCD Keypad ShieldLCD Keypad Shield
LCD Keypad Shield
 
L298 Motor Driver
L298 Motor DriverL298 Motor Driver
L298 Motor Driver
 
Joystick Shield
Joystick ShieldJoystick Shield
Joystick Shield
 
Force Sensor
Force SensorForce Sensor
Force Sensor
 
Plastic REED Float Switch
Plastic REED Float SwitchPlastic REED Float Switch
Plastic REED Float Switch
 
Flex Sensor
Flex SensorFlex Sensor
Flex Sensor
 
Serial EEPROM
Serial EEPROMSerial EEPROM
Serial EEPROM
 

Recently uploaded

Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
Safe Software
 
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
Neo4j
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
Octavian Nadolu
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
innovationoecd
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
SOFTTECHHUB
 
UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5
DianaGray10
 
20240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 202420240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 2024
Matthew Sinclair
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
ControlCase
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems S.M.S.A.
 
Mind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AIMind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AI
Kumud Singh
 
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
Neo4j
 
Large Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial ApplicationsLarge Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial Applications
Rohit Gautam
 
How to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptxHow to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptx
danishmna97
 
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
Neo4j
 
Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
Kari Kakkonen
 
Building RAG with self-deployed Milvus vector database and Snowpark Container...
Building RAG with self-deployed Milvus vector database and Snowpark Container...Building RAG with self-deployed Milvus vector database and Snowpark Container...
Building RAG with self-deployed Milvus vector database and Snowpark Container...
Zilliz
 
20240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 202420240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 2024
Matthew Sinclair
 
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
James Anderson
 
How to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For FlutterHow to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For Flutter
Daiki Mogmet Ito
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
sonjaschweigert1
 

Recently uploaded (20)

Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
 
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
 
UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5
 
20240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 202420240605 QFM017 Machine Intelligence Reading List May 2024
20240605 QFM017 Machine Intelligence Reading List May 2024
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
 
Mind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AIMind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AI
 
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
GraphSummit Singapore | The Future of Agility: Supercharging Digital Transfor...
 
Large Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial ApplicationsLarge Language Model (LLM) and it’s Geospatial Applications
Large Language Model (LLM) and it’s Geospatial Applications
 
How to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptxHow to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptx
 
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
GraphSummit Singapore | Neo4j Product Vision & Roadmap - Q2 2024
 
Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
 
Building RAG with self-deployed Milvus vector database and Snowpark Container...
Building RAG with self-deployed Milvus vector database and Snowpark Container...Building RAG with self-deployed Milvus vector database and Snowpark Container...
Building RAG with self-deployed Milvus vector database and Snowpark Container...
 
20240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 202420240607 QFM018 Elixir Reading List May 2024
20240607 QFM018 Elixir Reading List May 2024
 
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
 
How to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For FlutterHow to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For Flutter
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
 

Arduino experiments

  • 2. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 1 ARDUINO EXPERIMENTS IR OBSTACLE SENSOR........................................................................................................................................................... 3 OVERVIEW............................................................................................................................................................................. 3 OBJECTIVE OF THE EXPERIMENT............................................................................................................................... 3 EXPERIMENTAL SETUP................................................................................................................................................... 3 IR SENSOR ARDUINO CODE........................................................................................................................................... 4 ARDUINO IDE – SERIAL MONITOR ............................................................................................................................. 5 GAS SENSOR............................................................................................................................................................................... 6 OVERVIEW............................................................................................................................................................................. 6 OBJECTIVE OF THE EXPERIMENT............................................................................................................................... 6 EXPERIMENTAL SETUP................................................................................................................................................... 6 GAS SENSOR ARDUINO CODE ....................................................................................................................................... 7 ARDUINO IDE – SERIAL MONITOR ............................................................................................................................. 8 FIRE SENSOR............................................................................................................................................................................. 9 OVERVIEW............................................................................................................................................................................. 9 OBJECTIVE OF THE EXPERIMENT............................................................................................................................... 9 EXPERIMENTAL SETUP................................................................................................................................................... 9 FIRE SENSOR ARDUINO CODE....................................................................................................................................10 ARDUINO IDE – SERIAL MONITOR ...........................................................................................................................11 RELAY SHIELD........................................................................................................................................................................12 OVERVIEW...........................................................................................................................................................................12 OBJECTIVE OF THE EXPERIMENT.............................................................................................................................12 EXPERIMENTAL SETUP.................................................................................................................................................12 RELAY SHIELD ARDUINO CODE.................................................................................................................................13 ARDUINO IDE – SERIAL MONITOR ...........................................................................................................................15 GSM SHIELD.............................................................................................................................................................................17 OVERVIEW...........................................................................................................................................................................17 OBJECTIVE OF THE EXPERIMENT.............................................................................................................................17 EXPERIMENTAL SETUP.................................................................................................................................................17 GSM SHIELD........................................................................................................................................................................18 BLUETOOTH RELAY SHIELD............................................................................................................................................19 OVERVIEW...........................................................................................................................................................................19
  • 3. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 2 OBJECTIVE OF THE EXPERIMENT.............................................................................................................................19 EXPERIMENTAL SETUP.................................................................................................................................................19 RELAY SHIELD ARDUINO CODE.................................................................................................................................20 4-RELAY SWITCH BOARD ANDROID APPLICATION .........................................................................................23 LCD AND KEYPAD-SCREW SHIELD................................................................................................................................24 OVERVIEW...........................................................................................................................................................................24 OBJECTIVE OF THE EXPERIMENT.............................................................................................................................24 EXPERIMENTAL SETUP.................................................................................................................................................24 LCD AND KEYPAD-SCREW SHIELD ARDUINO CODE ........................................................................................26 HEART BEAT SENSOR.........................................................................................................................................................27 OVERVIEW...........................................................................................................................................................................27 OBJECTIVE...........................................................................................................................................................................27 EXPERIMENTAL SETUP.................................................................................................................................................27 HEART BEAT SENSOR ARDUINO CODE..................................................................................................................28
  • 4. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 3 IR OBSTACLE SENSOR OVERVIEW Based on simple basic idea, the sensor is build which is easy to calibrate. This sensor provides a detection range of 10 – 30 cm.This sensor can be used for most of the indoor applications where no important ambient light is present. It follows the same principle as in all Infra – Red proximity sensors. The basic idea is to send infra red light though IR – LED which reflects any object in front of the sensor. OBJECTIVE OF THE EXPERIMENT If object is detected pin 13 will go high (onboard LED ON) and "object detected" message will be displayed in serial monitor If object is not detected pin 13 will go low (onboard LED OFF) and "object not detected" message will be displayed in serial monitor EXPERIMENTAL SETUP
  • 5. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 4 IR SENSOR ARDUINO CODE /* * Project name: IR sensor * Copyright (c) Researchdesignlab.com *description: if object is detected pin 13 will go high (onboard LED ON) and "object detected" message will be displayed in serial monitor if object is not detected pin 13 will go low (onboard LED OFF) and "object not detected" message will be displayed in serial monitor */ void setup() { pinMode(7, INPUT); // initialize the IR sensor pin as an input: pinMode(13, OUTPUT); // initialize pin 13 led as output Serial.begin(9600); //baud rate } void loop() { if(digitalRead(7) == LOW) // if object detected IR sensor sends 0 to pin 7 { Serial.println("OBJECT detected"); //"object detected" message will be displayed in serial monitor digitalWrite(13, HIGH); //led pin 13 will be turned on } else { Serial.println("OBJECT not detected"); //"object not detected" message will be displayed in serial monitor digitalWrite(13, LOW); //led pin 13 will be turned off } delay(1000); //delay of one second } After compiling and uploading the above code, click on serial monitor in Ardunio ide to observe the output.
  • 6. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 5 ARDUINO IDE – SERIAL MONITOR
  • 7. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 6 GAS SENSOR OVERVIEW The liquefied Petroleum Gas (LPG) sensor is suitable for sensing LPG (composed of mostly propane and butane) concentration in the air. This can be used in Gas Leakage Detection equipment for detecting the ISO-butane, Propane, LNG combustible Gases. If output goes above the preset range, indication will be shown as high otherwise it will remain in idle condition OBJECTIVE OF THE EXPERIMENT If Gas is detected pin 13 will go high (onboard LED ON) and "gas detected" message will be displayed in serial monitor If Gas is not detected pin 13 will go low (onboard LED OFF) and "gas not detected" message will be displayed in serial monitor EXPERIMENTAL SETUP (Note: for testing, Get a cigarette lighter and half press the lighter button to spill out the GAS.)
  • 8. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 7 GAS SENSOR ARDUINO CODE /* * Project name: Gas sensor * Copyright (c) Researchdesignlab.com *description: if Gas is detected pin 13 will go high (onboard LED ON) and "gas detected" message will be displayed in serial monitor If Gas is not detected pin 13 will go low (onboard LED OFF) and "gas not detected" message will be displayed in serial monitor */ void setup() { pinMode(7, INPUT); // initialize the GAS sensor pin as an input: pinMode(13, OUTPUT); // initialize pin 13 led as output Serial.begin(9600); //baud rate } void loop() { if(digitalRead(7) == HIGH) // if gas detected GAS sensor sends 0 to pin 7 { Serial.println("gas detected"); //"gas detected" message will be displayed in serial monitor digitalWrite(13, HIGH); //led pin 13 will be turned on } else { Serial.println("gas not detected"); //"gas not detected" message will be displayed in serial monitor digitalWrite(13, LOW); //led pin 13 will be turned off } delay(1000); //delay of one second } After compiling and uploading the above code, click on serial monitor in Ardunio ide to observe the output.
  • 9. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 8 ARDUINO IDE – SERIAL MONITOR
  • 10. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 9 FIRE SENSOR OVERVIEW The Fire sensor, as the name suggests, is used as a simple and compact device for protection against fire. The module makes use of IR sensor and comparator to detect fire up to a range of 1 - 2 meters depending on fire density. OBJECTIVE OF THE EXPERIMENT If FIRE is detected pin 13 will go high (onboard LED ON) and "FIRE detected" message will be displayed in serial monitor If FIRE is not detected pin 13 will go low (onboard LED OFF) and "FIRE not detected" message will be displayed in serial monitor EXPERIMENTAL SETUP
  • 11. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 10 FIRE SENSOR ARDUINO CODE /* * Project name: FIRE sensor * Copyright (c) Researchdesignlab.com *description: if FIRE is detected pin 13 will go high (onboard LED ON) and "FIRE detected" message will be displayed in serial monitor If FIRE is not detected pin 13 will go low (onboard LED OFF) and "FIRE not detected" message will be displayed in serial monitor */ void setup() { pinMode(7, INPUT); // initialize the FIRE sensor pin as an input: pinMode(13, OUTPUT); // initialize pin 13 led as output Serial.begin(9600); //baud rate } void loop() { if(digitalRead(7) == HIGH) // if gas detected FIRE sensor sends 0 to pin 7 { Serial.println("FIRE detected"); //"FIRE detected" message will be displayed in serial monitor digitalWrite(13, HIGH); //led pin 13 will be turned on } else { Serial.println("FIRE not detected"); //"FIRE not detected" message will be displayed in serial monitor digitalWrite(13, LOW); //led pin 13 will be turned off } delay(1000); //delay of one second } After compiling and uploading the above code, click on serial monitor in Ardunio ide to observe the output.
  • 12. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 11 ARDUINO IDE – SERIAL MONITOR
  • 13. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 12 RELAY SHIELD OVERVIEW The Relay shield is capable of controlling 4 relays. The max switching power could be 12A/250VAC or 15A/24VDC. It could be directly controlled by Arduino through digital IOs. OBJECTIVE OF THE EXPERIMENT Controlling relay shield from serial monitor (Arduino IDE) EXPERIMENTAL SETUP Note: Both USB and DC power supply must be plugged in.
  • 14. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 13 RELAY SHIELD ARDUINO CODE /* * Project name: Relay shield - arduino * Copyright (c) Researchdesignlab.com *description: Controlling relay shield from serial monitor */ char rec; void setup() { pinMode(4, OUTPUT); pinMode(5, OUTPUT); pinMode(6, OUTPUT); pinMode(7, OUTPUT); Serial.begin(9600); delay(1000); Serial.println("================================="); Serial.println("relays | ON command | OFF command"); Serial.println("================================="); Serial.println("relay1 1N 1F"); Serial.println("relay2 2N 2F"); Serial.println("relay3 3N 3F"); Serial.println("relay4 4N 4F"); Serial.println("================================="); } void loop() // run over and over { while(!Serial.available()); rec=Serial.read(); if(rec=='1') { while(!Serial.available()); rec=Serial.read(); if(rec=='N') { digitalWrite(4, HIGH); Serial.println("relay1 is ON"); } else if(rec=='F') {
  • 15. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 14 digitalWrite(4, LOW); Serial.println("relay1 is OFF"); } } else if(rec=='2') { while(!Serial.available()); rec=Serial.read(); if(rec=='N') { digitalWrite(5, HIGH); Serial.println("relay2 is ON"); } else if(rec=='F') { digitalWrite(5, LOW); Serial.println("relay2 is OFF"); } } else if(rec=='3') { while(!Serial.available()); rec=Serial.read(); if(rec=='N') { digitalWrite(6, HIGH); Serial.println("relay3 is ON"); } else if(rec=='F') { digitalWrite(6, LOW); Serial.println("relay3 is OFF"); } } else if(rec=='4') { while(!Serial.available()); rec=Serial.read(); if(rec=='N') {
  • 16. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 15 digitalWrite(7, HIGH); Serial.println("relay4 is ON"); } else if(rec=='F') { digitalWrite(7, LOW); Serial.println("relay4 is OFF"); } } } ARDUINO IDE – SERIAL MONITOR
  • 18. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 17 GSM SHIELD OVERVIEW This is a very low cost and simple Arduino GSM and GPRS shield. We use the module SIMCom SIM900A. The Shield connects your Arduino to the internet using the GPRS wireless network. Just plug this module onto your Arduino board, plug in a SIM card from an operator offering GPRS coverage and follow a few simple instructions to start controlling your world through the internet. You can also make/receive voice calls (you will need an external speaker and microphone circuit) and send/receive SMS messages OBJECTIVE OF THE EXPERIMENT If GAS is detected pin 7 will go LOW and "GAS detected" message will be sent to destination number. EXPERIMENTAL SETUP (Note: for testing, Get a cigarette lighter and half press the lighter button to spill out GAS.)
  • 19. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 18 GSM SHIELD /* * Project name: GSM Shield * Copyright (c) Researchdesignlab.com *description: If GAS is detected pin 7 will go LOW and "GAS detected" message will be sent to destination number */ void setup() { Serial.begin(9600); // SERIAL COMMUNICATION BAUD RATE pinMode(7, INPUT); //INITIALIZE PIN 7 FOR GAS SENSOR OUTPUT delay(5000); } void loop() { if(digitalRead(7)== LOW) { Serial.println("AT"); //TO CHECK MODEM delay(1000); Serial.println("AT+CMGF=1"); //TO CHANGE MESSAGE SENDING MODE delay(1000); Serial.println("AT+CMGS="0123456789""); //CHANGE TO DESTINATION NUMBER delay(1000); Serial.print("Gas detected"); //MESSAGE WILL SENT ONCE GAS IS DETECTED Serial.write(26); delay(1000); } } Compile and upload the above code to arduino, then mount the GSM Shield onto arduino board (place jumper on JP3) and plugin power supply DC 12V 1A.(remove USB cable).
  • 20. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 19 BLUETOOTH RELAY SHIELD OVERVIEW Bluetooth technology is a short distance communication technology used by almost all phones including smart phones and all laptops. This technology find very wide uses including that of Home & Industrial automation. The Relay shield is capable of controlling 4 relays. The max switching power could be 12A/250VAC or 15A/24VDC. It could be directly controlled by Arduino through digital IOs. OBJECTIVE OF THE EXPERIMENT Controlling relay shield from Bluetooth enabled device (Android APK) EXPERIMENTAL SETUP Note: remove USB after uploading the code, DC 12V 1A must be plugged in.
  • 21. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 20 RELAY SHIELD ARDUINO CODE /* Software serial multple serial test Receives from the hardware serial, sends to software serial. Receives from software serial, sends to hardware serial. The circuit: * RX is digital pin 10 (connect to TX of other device) * TX is digital pin 11 (connect to RX of other device) Note: Not all pins on the Mega and Mega 2560 support change interrupts, so only the following can be used for RX: 10, 11, 12, 13, 50, 51, 52, 53, 62, 63, 64, 65, 66, 67, 68, 69 Not all pins on the Leonardo support change interrupts, so only the following can be used for RX: 8, 9, 10, 11, 14 (MISO), 15 (SCK), 16 (MOSI). Software serial multple serial test Receives from the hardware serial, sends to software serial. Receives from software serial, sends to hardware serial. The circuit: * RX is digital pin 2 (connect to TX of other device) * TX is digital pin 3 (connect to RX of other device) SENDING DATA FORMAT 1N TO ON RELAY1 1F TO OFF RELAY1 2N TO ON RELAY2 2F TO OFF RELAY2 3N TO ON RELAY3 3F TO OFF RELAY3 4N TO ON RELAY4 4F TO OFF RELAY4 This example code is in the public domain. */
  • 22. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 21 #include <SoftwareSerial.h> SoftwareSerial mySerial(2, 3); // RX, TX int rec; void setup() { pinMode(4, OUTPUT); pinMode(5, OUTPUT); pinMode(6, OUTPUT); pinMode(7, OUTPUT); mySerial.begin(9600); } void loop() // run over and over { while(!mySerial.available()); rec=mySerial.read(); if(rec=='1') { while(!mySerial.available()); rec=mySerial.read(); if(rec=='N') digitalWrite(4, HIGH); else if(rec=='F') digitalWrite(4, LOW); } else if(rec=='2') { while(!mySerial.available()); rec=mySerial.read(); if(rec=='N') digitalWrite(5, HIGH); else if(rec=='F') digitalWrite(5, LOW); } else if(rec=='3') { while(!mySerial.available()); rec=mySerial.read(); if(rec=='N') digitalWrite(6, HIGH);
  • 23. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 22 else if(rec=='F') digitalWrite(6, LOW); } else if(rec=='4') { while(!mySerial.available()); rec=mySerial.read(); if(rec=='N') digitalWrite(7, HIGH); else if(rec=='F') digitalWrite(7, LOW); } }
  • 24. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 23 4-RELAY SWITCH BOARD ANDROID APPLICATION
  • 25. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 24 LCD-SCREW SHIELD OVERVIEW One of the basic interfacing requirements for the hobbyists or electronics enthusiasts is I/P (keypad) and O/P (LCD display) for prototype applications. This shield uses minimum number I/O’s that is 2 bits(D0 and D1) for LCD data . 5 input key switches (Navigation keys), when it's activated serial data will be sent to pin D0 by internal 2 line LCD controller. Each key has been pulled up to a different voltage level, so a different voltage will be generated every time a user selects a key. This voltage could be read by the analog pin of internal 2 line LCD controller on the board. Hence saves the no of I/O pins. The backlight of the LCD could be controlled by setting PWM (Pin D10) by adding a few lines of code. OBJECTIVE OF THE EXPERIMENT If Gas is detected by sensor ,”gas detected” message will be displayed in LCD else ”gas not detected” message will be displayed in LCD. EXPERIMENTAL SETUP
  • 26. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 25 (Note: for testing, Get a cigarette lighter and half press the lighter button to spill out the GAS.)
  • 27. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 26 LCD AND KEYPAD-SCREW SHIELD ARDUINO CODE /* * Project name: LCD KEYPAD Shield * Copyright (c) Researchdesignlab.com * Description: If Gas is detected by sensor ,”gas detected” message will be displayed in LCD Else ”gas not detected” message will be displayed in LCD. The circuit: * LCD RS pin to digital pin 12 * LCD Enable pin to digital pin 11 * LCD D4 pin to digital pin 5 * LCD D5 pin to digital pin 4 * LCD D6 pin to digital pin 3 * LCD D7 pin to digital pin 2 * LCD R/W pin to ground * 10K resistor: * ends to +5V and ground * wiper to LCD VO pin (pin 3) */ #include <LiquidCrystal.h> // include the library code: int sensorValue = 0; // value read from the keypad LiquidCrystal lcd(12, 11, 5, 4, 3, 2); // initialize the library with the numbers of the interface pins int sensorPin = A0; void setup() { lcd.begin(16, 2); // set up the LCD's number of columns and rows: pinMode(7, INPUT ); delay(2000); } void loop() { lcd.clear(); // clear lcd display lcd.setCursor(0, 0); // set the cursor to column 0, line 0 lcd.print("LCD KEYPAD Shield"); lcd.setCursor(0, 1); // set the cursor to column 0, line 1 if(digitalRead(7) == HIGH) lcd.print("GAS DETECTED"); else lcd.print("GAS NOT DETECTED"); delay(500); }
  • 28. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 27 HEART BEAT SENSOR OVERVIEW The Heart Beat Sensor is designed to provide digital output of heart beat when a finger is placed on it. When the Heart detector starts working, the top most LED will starts flashing with every heartbeat. The output of this sensor can be connected to Micro Controller directly to measure the heart beat per minute (BPM) rate. It functions on the principle of light modulation by blood flow through the nerves of the finger at every pulse. The module output mode, Digital output mode is simple, Serial Output is with exact readings OBJECTIVE To measure heart beats per minute. EXPERIMENTAL SETUP
  • 29. ARDUINO EXPERIMENTS www.researchdesignlab.com Page 28 HEART BEAT SENSOR ARDUINO CODE byte byteRead; void setup() { Serial.begin(9600); //BAUD RATE Serial.println("==================="); Serial.println("heat beat sensor"); Serial.println("==================="); } void loop() { if (Serial.available()) { int byteRead = Serial.parseInt(); // CONVERTING ASCII TO INT if(!byteRead == 0) Serial.println(byteRead); } } ARDUINO IDE-SERIAL MONTOR