SlideShare a Scribd company logo
1 of 29
Download to read offline
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

Bsides
BsidesBsides
Bsidesm j
 
Untrasonice Leak Detector
Untrasonice Leak DetectorUntrasonice Leak Detector
Untrasonice Leak Detectorvideoborescope
 
Faronics Anti-executable Enterprise User guide
Faronics Anti-executable Enterprise User guideFaronics Anti-executable Enterprise User guide
Faronics Anti-executable Enterprise User guideFaronics
 
Spartan 3e用户手册
Spartan 3e用户手册Spartan 3e用户手册
Spartan 3e用户手册zhaojk90
 
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
 
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 meterENVIMART
 
Digital Watchdog DWBJCUBE2TLX User Manual
Digital Watchdog DWBJCUBE2TLX User ManualDigital Watchdog DWBJCUBE2TLX User Manual
Digital Watchdog DWBJCUBE2TLX User ManualJMAC Supply
 
XRumer user manual guide
XRumer user manual guideXRumer user manual guide
XRumer user manual guideRegis 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 2ENVIMART
 
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átLAPTOP 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 systemBadal Tushar
 
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 Principleelprocus
 

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.pdfssuser0e9cc4
 
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 SensorRaghav 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 TradeOptics-Trade
 
scarlett2i4-user-guide.pdf
scarlett2i4-user-guide.pdfscarlett2i4-user-guide.pdf
scarlett2i4-user-guide.pdfssusera78a1c
 
Wireshark user's guide
Wireshark user's guideWireshark user's guide
Wireshark user's guideGió 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
 
final report (parking project).pdf
final report (parking project).pdffinal report (parking project).pdf
final report (parking project).pdfgamefacegamer
 
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_FinalCopyElijah Barner
 
Face detection and recognition
Face detection and recognitionFace detection and recognition
Face detection and recognitionDerek Budde
 
Smart classethernet user_manual_en
Smart classethernet user_manual_enSmart classethernet user_manual_en
Smart classethernet user_manual_enIkundu Gatambia
 
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 1SANTIAGO PABLO ALBERTO
 
@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.docxShiraPrater50
 
@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 @classtroutmanboris
 
Alda tel. manual setting
Alda tel. manual settingAlda tel. manual setting
Alda tel. manual settingjeffrey alda
 
Bn59 01127 a-08eng
Bn59 01127 a-08engBn59 01127 a-08eng
Bn59 01127 a-08engHamba Tuhan
 

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
 
Bn59 01127 a-08eng
Bn59 01127 a-08engBn59 01127 a-08eng
Bn59 01127 a-08eng
 

More from Raghav Shetty

8 Channel Relay Board-Bluetooth
8 Channel Relay Board-Bluetooth8 Channel Relay Board-Bluetooth
8 Channel Relay Board-BluetoothRaghav 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 ArduinoRaghav 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 ArduinoRaghav Shetty
 
8 Channel Relay Board-Rs485
8 Channel Relay Board-Rs485 8 Channel Relay Board-Rs485
8 Channel Relay Board-Rs485 Raghav Shetty
 
Digitla Vibration Sensor
Digitla Vibration SensorDigitla Vibration Sensor
Digitla Vibration SensorRaghav Shetty
 
Digital Soil Moisture Sensor
Digital Soil Moisture SensorDigital Soil Moisture Sensor
Digital Soil Moisture SensorRaghav 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 MCURaghav 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 MCURaghav Shetty
 
Regulated Power Supply
Regulated Power Supply Regulated Power Supply
Regulated Power Supply 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 ConverterRaghav Shetty
 
Plastic REED Float Switch
Plastic REED Float SwitchPlastic REED Float Switch
Plastic REED Float SwitchRaghav 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

ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 

Recently uploaded (20)

ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 

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