SlideShare a Scribd company logo
ARDUINO COURSE
ARDUINO IDE & SIMPLE PROJECTS
Eng. Elaf A.Saeed
WHAT WE LEARN
• P8-Arduino with LM35.
• P9-Arduino with gas sensor.
• P10-Arduino with dc motor.
• P11-Arduino with Servo Motor.
• P12-Arduino with Bluetooth.
• P13-Arduino with ultrasonic.
• P14-Arduino with IR sensor.
• Arduino IDE.
• P1-Arduino with led.
• P2-Arduino with push button.
• P3-Arduino with potentiometer.
• P4-Arduino with PWM.
• P5-Arduino with LCD.
• P6-Arduino with PIR.
• P7-Arduino with DHT11
ARDUINO IDE
STRUCTURE OF THE PROGRAM
Each Arduino program (often called a sketch)
has two required functions:
1-void setup (){ }
All the code between the two curly brackets will
be run once when your
Arduino program first runs.
2-void loop (){ }
This function is running after setup has finished.
After it has run once it will be run again, and
again, until power is removed.
VARIABLES
1-int (integer): The main workhorse, stores a number in 2 bytes (16 bits).
2-float (float): Used for floating point math (decimals). Takes 4 bytes
(32bits).
3-char (character): Stores one character using the ASCII code, (i.e 'A' =
65). Uses one byte (8 bits)
P1-ARDUINO WITH LED
DIGITAL PORTS
1-pinMode (pin, mode):
Used to set a pins mode, pin is the pin number and the mode can either be INPUT or OUTPUT.
2- digitalWrite(pin, value):
Once a pin is set as an OUTPUT, it can be set either HIGH (pulled to +5 volts) or LOW (pulled
to ground).
3- int digitalRead(pin);
Once a pin is set as an INPUT you can use this to return whether it is HIGH (pulled to+5 volts)
or LOW (pulled to ground).
ANALOG PORTS
1-int analogWrite(pin,value):
Some of the Arduino's pins support pulse width modulation (3, 5, 6, 9,10 and 11). This turns
the pin on and off very quickly making it act like an analog output (Pulse Width Modulation
PWM technique). The value is any number between 0 bit (0% duty cycle ~0v) and 255 bits
(100% duty cycle ~5
volts).
2-int analogRead(pin):
When the analog input pins are set to input you can read their voltage. A value between 0bit
(for 0volts) and 1024 bit (for 5volts) will be returned.
CONTROL STRUCTURE
if(condition){ }
else if( condition ){ }
else { }
This will execute the code between the curly brackets if the condition is true,
and if not it will test the else if condition if that is also false the else code will
execute.
LED SCHEMATIC
LED CONNECTION WITH ARDUINO
LED CONNECTION WITH ARDUINO
P1-ARDUINO WITH LED
Apparatus:
1-Breadboard.
2-Arduino UNO.
5-jumper wires.
6-LED.
7-Resistance 330 ohm.
P1-ARDUINO WITH LED (CONT.)
Circuit Design:
P1-ARDUINO WITH LED (CONT.)
Code:
P2-ARDUINO WITH PUSH BUTTON
PUSH BUTTON
PUSH BUTTON CONNECTION WITH RESISTOR
PUSH BUTTON CONNECTION
PUSH BUTTON CONNECTION WITH PULL-UP
RESISTOR
P2-ARDUINO WITH PUSH BUTTON
Apparatus:
1-Breadboard.
2-Arduino UNO.
5-jumper wires.
6-LED.
7-Resistance 330 ohm x2.
8-push Button.
P2-ARDUINO WITH PUSH BUTTON(CONT.)
Circuit Design:
P2-ARDUINO WITH PUSH BUTTON(CONT.)
Code:
P2-ARDUINO WITH PUSH BUTTON(CONT.)
Circuit Design:
P2-ARDUINO WITH PUSH BUTTON(CONT.)
Code:
P3-ARDUINO WITH POTENTIOMETER
POTENTIOMETER
ANALOG PORTS INPUT
- int analogRead(pin):
When the analog input pins are set to input you can read their voltage. A value
between 0bit (for 0volts) and 1024 bit (for 5volts) will be returned.
SERIAL MONITOR
SERIAL
Serial
Used for communication between the Arduino board and a computer or other devices.
All Arduino boards have at least one serial port (also known as a UART or USART),
and some have several.
Serial.begin(speed)  Sets the data rate in bits per second (baud) for serial data
transmission.
Serial.available()  Get the number of bytes (characters) available for reading from
the serial port. This is data that’s already arrived and stored in the serial receive buffer
(which holds 64 bytes).
SERIAL
Serial.read() Reads incoming serial data.
Serial.print(val)  Prints data to the serial port as human-readable ASCII text.
Serial.println()  Prints data to the serial port as human-readable ASCII text followed
by a carriage return character (ASCII 13, or 'r') and a newline character (ASCII 10, or
'n').
Serial.write(val)  Writes binary data to the serial port. This data is sent as a byte or
series of bytes; to send the characters representing the digits of a number use the
print() function instead.
P3-ARDUINO WITH POTENTIOMETER
Apparatus:
1- Breadboard.
2- Arduino UNO.
3- jumper wires.
4- Potentiometer 5kohm.
P3-ARDUINO WITH POTENTIOMETER (CONT.)
Circuit Design:
P3-ARDUINO WITH POTENTIOMETER (CONT.)
Code:
P4-ARDUINO WITH PWM
PULSE WIDTH MODULATION (PWM)
Pulse Width Modulation or PWM is a technique for supplying electrical power to a
load that has a relatively slow response. The supply signal consists of a train of
voltages pulses such that the width of individual pulses controls the elective voltage
level to the load. Both AC and DC signals can be simulated with PWM. In these notes
we will describe the use of PWM on an Arduino for controlling LEDs and DC motors.
An Arduino Uno has 14 digital I/O pin(s) 6 provide PWM output. The PWM give an
analog output signal in rage[0,255] where each 255samples means 5V digital so, to
determine the required analog output voltage use the relation:
PULSE WIDTH MODULATION (PWM)
Veff is the required output level such (2, 2.5, 3, 3.5…etc.).
P4-ARDUINO WITH PWM
Apparatus:
1. Breadboard.
2. Arduino UNO.
3. jumper wires.
4. LED.
5. Resistance 330 ohm .
6. Potentiometer 5kohm.
P4-ARDUINO WITH PWM(CONT.)
Circuit Design:
P3-ARDUINO WITH POTENTIOMETER (CONT.)
Code:
P5-ARDUINO WITH LCD
LIQUID CRYSTAL DISPLAY (LCD)
Parallel LCD Pins
PIN1 or VSS to ground
PIN2 or VDD or VCC to +5v power
PIN3 or VEE to ground (gives maximum contrast best for a
beginner)
PIN4 or RS (Register Selection) to PIN0 of ARDUINO
UNO PIN5 or RW (Read/Write) to ground (puts LCD in read
mode eases the communication for user)
PIN6 or E (Enable) to PIN1 of ARDUINO UNO
PIN11 or D4 to PIN8 of ARDUINO UNO
PIN12 or D5 to PIN9 of ARDUINO UNO
PIN13 or D6 to PIN10 of ARDUINO UNO
PIN14 or D7 to PIN11 of ARDUINO UNO
PIN 15 and 16 for background light.
LIQUID CRYSTAL DISPLAY (LCD)(CONT.)
Parallel LCD Connection
LIQUID CRYSTAL DISPLAY (LCD)(CONT.)
Series I2C LCD Connection
LIQUID CRYSTAL DISPLAY (LCD)(CONT.)
Basics of the I2C Communication Protocol
SDA (Serial Data) – The line for the
master and slave to send and receive
data.
SCL (Serial Clock) – The line that
carries the clock signal.
LIQUID CRYSTAL DISPLAY (LCD)(CONT.)
I2C pins in Arduino Uno.
P5-ARDUINO WITH LCD
Apparatus:
1. Breadboard.
2. Arduino UNO.
3. jumper wires.
4. LCD.
5. Resistance 330 ohm .
6. Potentiometer 5kohm.
P5-ARDUINO WITH LCD (CONT.)
-Important LCD instructions:
- #include< LiquidCrystal.h>  This library allows an Arduino board to control LiquidCrystal
displays (LCDs).
- lcd.begin(16,2)  This instruction use to set up the LCD's number of columns and rows.
- lcd.print("Message")  This instruction used for print a message to the LCD if need to display
numbers must remove the double quotation mark like this {lcd.print(var)}.
- lcd.setCursor(j, i)  This instruct used for determine site scripting as row and column where,( j)
represent the column and (i) represent the row. The figure below shows us the locations of rows and
columns in the 2x16 Liquid Crystal Display.
P5-ARDUINO WITH LCD (CONT.)
-Important LCD instructions:
- lcd.clear( ) : This instruction used to clear the screen .
- delay(n): This instruct used to give delay time where,(n) is an integer number in millisecond.
P5-ARDUINO WITH LCD (CONT.)
Circuit Design:
P5-ARDUINO WITH LCD(CONT.)
Code:
P5-ARDUINO WITH LCD
-Important I2C LCD instructions:
- #include <Wire.h>  This library allows you to communicate with I2C / TWI devices.
- #include <LiquidCrystal_I2C.h>  This library allows an Arduino board to
control I2C LiquidCrystal displays (LCDs).
- lcd.init()  initialize the lcd.
P5-ARDUINO WITH LCD (CONT.)
Circuit Design:
P5-ARDUINO WITH LCD(CONT.)
Code:
P6-ARDUINO WITH PIR
MOTION SENSOR (PIR)
• The module actually consists of a Pyroelectric sensor which generates energy when exposed
to heat.
MOTION SENSOR (PIR)
MOTION SENSOR (PIR)
• There are two potentiometers on the board to adjust a couple of
parameters:
• Sensitivity– This sets the maximum distance that motion can be
detected. It ranges from 3 meters to approximately 7 meters. The
topology of your room can affect the actual range you achieve.
• Time– This sets how long that the output will remain HIGH after
detection. At minimum it is 3 seconds, at maximum it is 300
seconds or 5 minutes.
• H– This is the Hold/Repeat/Retriggering In this position the HC-
SR501 will continue to output a HIGH signal as long as it
continues to detect movement.
• L– This is the Intermittent or No-Repeat/Non-Retriggering In this
position the output will stay HIGH for the period set by the TIME
potentiometer adjustment.
P6-ARDUINO WITH PIR
Apparatus:
1. Breadboard.
2. Arduino UNO.
3. jumper wires.
4. PIR.
5. Resistance 330 ohm .
6. LED.
P6-ARDUINO WITH PIR(CONT.)
Circuit Design:
P6-ARDUINO WITH PIR(CONT.)
Code:
P7-ARDUINO WITH DHT11
DIGITAL HUMIDITY AND TEMPERATURE (DHT)
DIGITAL HUMIDITY AND TEMPERATURE (DHT)
• DHT11 with MCU
P7-ARDUINO WITH DHT11
Circuit Design:
P7-ARDUINO WITH DHT11(CONT.)
Code:
P8-ARDUINO WITH LM35
LM35 TEMPERATURE SENSOR
LM35 TEMPERATURE SENSOR
• The LM35 is an integrated circuit sensor that can be used to measure
temperature with an electrical output proportional to the temperature (in 𝑜C),
It has an output voltage that is proportional to the Celsius temperature 10 mv
for 1 Celsius, the accuracy of reading up to ±0.5 𝑜C the rated range of
LM35 is −55°C to +150°C.
• The general equation to convert the voltage into temperature is given below:
P8-ARDUINO WITH LM35
Apparatus:
1. Breadboard.
2. Arduino UNO.
3. jumper wires.
4. LM35.
5. Resistance 330 ohm .
6. LED.
P8-ARDUINO WITH LM35(CONT.)
Circuit Design:
P8-ARDUINO WITH LM35(CONT.)
Code:
P9-ARDUINO WITH GAS SENSOR
GAS SENSOR
P9-ARDUINO WITH GAS SENSOR
Apparatus:
1. Breadboard.
2. Arduino UNO.
3. jumper wires.
4. Gas sensor.
P9-ARDUINO WITH GAS SENSOR(CONT.)
Circuit Design:
P9-ARDUINO WITH GAS SENSOR(CONT.)
Code:
P10-ARDUINO WITH DC MOTOR
DC MOTOR & L298D DRIVER
P10-ARDUINO WITH DC MOTOR
Apparatus:
1. Breadboard.
2. Arduino UNO.
3. jumper wires.
4. Battery.
5. Motor driver L298D.
6. Small DC motor.
P10-ARDUINO WITH DC MOTOR(CONT.)
Circuit Design:
P10-ARDUINO WITH DC MOTOR(CONT.)
Code:
P11-ARDUINO WITH SERVO MOTOR
SERVO MOTOR
The servo motor unlike dc motors; with servo
motors you can position the motor shaft at a specific
position (angle) using control signal. The motor
shaft will hold at this position as long as the control
signal not changed. This is very useful for
controlling robot arms, unmanned airplanes control
surface or any object that you want it to move at
certain angle and stay at its new position.
SERVO MOTOR
Servo motor working principle:
P11-ARDUINO WITH SERVO MOTOR
Apparatus:
1. Breadboard.
2. Arduino UNO.
3. jumper wires.
4. Servo Motor.
P11-ARDUINO WITH SERVO MOTOR (CONT.)
important servo motor instructions:
These instructions found in the library following:
#include <Servo.h>
1-Servo myservo: create servo object to control a servo where, my servo is variable!
2- myservo.attach(pin number): attaches the servo on pin number such(pin 9) to the
servo object.
3-myservo.write(pos): tell servo to go to position in variable 'pos" such 20
degree,90degree … etc '
P11-ARDUINO WITH SERVO MOTOR (CONT.)
Circuit Design:
P11-ARDUINO WITH SERVO MOTOR (CONT.)
Code:
P12-ARDUINO WITH BLUETOOTH
BLUETOOTH HC-06 & HC-05
BLUETOOTH HC-06 & HC-05 PINOUT
BLUETOOTH HC-06 & HC-05 PINOUT
P12-ARDUINO WITH BLUETOOTH
AT Command Mode:
AT mode refers to the form of communication to the HC-05 Bluetooth Module.
AT Commands are short for ATtention Commandswhich is a command
languageused for modems known as theHayes command set. Hayes command
setis a specific command language originally developed by Dennis Hayes for
the Hayes Smartmodem 300 baud modem in 1981 [2].The HC-05 Bluetooth
Module was used due to its ability to be configuredas Master or Slave mode as
well as adding a password to the module.
P12-ARDUINO WITH BLUETOOTH(CONT.)
AT Command Mode (Bluetooth Connection):
P12-ARDUINO WITH BLUETOOTH(CONT.)
AT Command Mode (Bluetooth Connection) (Cont.):
The red LED has 3 continuous flashing modes: ON for 2 seconds and Off for 2
seconds (AT Command Mode), fast blinking (searching for a connection), Off
for 2 seconds and blinks twice (connected).
P12-ARDUINO WITH BLUETOOTH(CONT.)
Enter to AT Command Mode :
To enter AT Command Mode the following must be
done:
1.Arduino Uno must be connected to the Computer
via USB and Arduino software opened
2.The Module must be disconnected from Arduino
3.Arduino needs to have a Blank Sketch downloaded
P12-ARDUINO WITH BLUETOOTH(CONT.)
Enter to AT Command Mode : (Cont.)
4.The Button Switch must be held pushed and
simultaneously connected to the Arduino as seen in
figure 2 (This is done most easily if using a
breadboard).
5.The Button Switch can be released once connected
to Arduino and the Bluetooth Module LED should
be blinking ON for 2 seconds and Off for 2 seconds
indicating it has entered AT Command Mode
6.The Correct COM Port should be Selected and
Serial Monitor needs to be opened as seen in figure.
P12-ARDUINO WITH BLUETOOTH(CONT.)
Enter to AT Command Mode
: (Cont.)
Serial Monitor:
7.38400 baud rate should be
selected and “Both NL & CR” as
seen in figure.
P12-ARDUINO WITH BLUETOOTH(CONT.)
AT Command Master Mode :
P12-ARDUINO WITH BLUETOOTH(CONT.)
AT Command Slave Mode :
P12-ARDUINO WITH BLUETOOTH(CONT.)
AT Command Slave Mode :
P12-ARDUINO WITH BLUETOOTH(CONT.)
Apparatus:
1. Breadboard.
2. Arduino UNO.
3. jumper wires.
4. Bluetooth HC-06 or HC-05.
P12-ARDUINO WITH BLUETOOTH(CONT.)
Application: Arduino Bluetooth Control
P12-ARDUINO WITH BLUETOOTH(CONT.)
Circuit Design:
P12-ARDUINO WITH BLUETOOTH(CONT.)
Code:
P13-ARDUINO WITH ULTRASONIC
ULTRASONIC SENSOR
An ultrasonic sensor is an electronic device that measures
the distance of a target object by emitting ultrasonic sound
waves, and converts the reflected sound into an electrical
signal. Ultrasonic waves travel faster than the speed of
audible sound (i.e. the sound that humans can hear).
Ultrasonic sensors have two main components: the
transmitter (which emits the sound using piezoelectric
crystals) and the receiver (which encounters the sound
after it has travelled to and from the target).
ULTRASONIC SENSOR PINS
ULTRASONIC HC-SR04 MODULE TIMING
DIAGRAM
ULTRASONIC HC-SR04 MODULE TIMING
DIAGRAM
P13-ARDUINO WITH ULTRASONIC
Apparatus:
1. Breadboard.
2. Arduino UNO.
3. jumper wires.
4. Ultrasonic HC-SR04.
P13-ARDUINO WITH ULTRASONIC (CONT.)
Circuit Design:
P13-ARDUINO WITH ULTRASONIC (CONT.)
Code:
P14-ARDUINO WITH IR SENSOR
OBSTACLE AVOIDANCE IR SENSOR
OBSTACLE AVOIDANCE IR SENSOR
OBSTACLE AVOIDANCE IR SENSOR
P14-ARDUINO WITH IR SENSOR
Apparatus:
1. Breadboard.
2. Arduino UNO.
3. jumper wires.
4. IR Sensor.
P14-ARDUINO WITH IR SENSOR(CONT.)
Circuit Design:
P14-ARDUINO WITH IR SENSOR(CONT.)
Code:
thanks
Email: elafe1888@gmail.com
linkden: www.linkedin.com/in/elaf-a-saeed-97bbb6150
facebook: https://www.facebook.com/profile.php?id=100004305557442
github: https://github.com/ElafAhmedSaeed
youtube: https://youtube.com/channel/UCE_RiXkyqREUdLAiZcbBqSg
slideshare: https://www.slideshare.net/ElafASaeed
Slideplayer: https://slideplayer.com/search/?q=Elaf+A.Saeed
Google Scholar: https://scholar.google.com/citations?user=VIpVZKkAAAAJ&hl=ar&gmla=AJsN-
F7PIgAjWJ44Hzb18fwPqJaaUmG0XzbLdzx09

More Related Content

What's hot (20)

Presentation door knock
Presentation door knock
Vamsi Krishna
 
Report on arduino
Report on arduino
Ravi Phadtare
 
Introduction to Arduino Hardware and Programming
Introduction to Arduino Hardware and Programming
Emmanuel Obot
 
Introduction To Embedded Systems
Introduction To Embedded Systems
Vishwa Mohan
 
Proteus Circuits Design and Simulation - Examples and Projects
Proteus Circuits Design and Simulation - Examples and Projects
Hassan Khan
 
My presentation raspberry pi
My presentation raspberry pi
HusainBhaldar21
 
Introduction to Arduino
Introduction to Arduino
Yong Heui Cho
 
Remote temperature monitor (DHT11)
Remote temperature monitor (DHT11)
Parshwadeep Lahane
 
Solution manual the 8051 microcontroller based embedded systems
Solution manual the 8051 microcontroller based embedded systems
manishpatel_79
 
7 Segment Decoder
7 Segment Decoder
Abdullah Al Fahim
 
Embedded system
Embedded system
Pankaj Upadhyay
 
Training Report on embedded Systems and Robotics
Training Report on embedded Systems and Robotics
NIT Raipur
 
Arduino Introduction Presentation
Arduino Introduction Presentation
ericholm
 
180nm process typical parameter values
180nm process typical parameter values
Mark Abadies
 
Embedded system design using arduino
Embedded system design using arduino
Santosh Verma
 
Embedded Firmware Design and Development, and EDLC
Embedded Firmware Design and Development, and EDLC
JuliaAndrews11
 
Distance Measurement by Ultrasonic Sensor
Distance Measurement by Ultrasonic Sensor
Edgefxkits & Solutions
 
LOGIC ANALYSER, ARBITARY WAVE GENERATOR AND WAVE ANALYSER
LOGIC ANALYSER, ARBITARY WAVE GENERATOR AND WAVE ANALYSER
Sumeet Patel
 
Rf based home automation
Rf based home automation
Rahul Saini
 
Introduction to Arduino
Introduction to Arduino
Green Moon Solutions
 
Presentation door knock
Presentation door knock
Vamsi Krishna
 
Introduction to Arduino Hardware and Programming
Introduction to Arduino Hardware and Programming
Emmanuel Obot
 
Introduction To Embedded Systems
Introduction To Embedded Systems
Vishwa Mohan
 
Proteus Circuits Design and Simulation - Examples and Projects
Proteus Circuits Design and Simulation - Examples and Projects
Hassan Khan
 
My presentation raspberry pi
My presentation raspberry pi
HusainBhaldar21
 
Introduction to Arduino
Introduction to Arduino
Yong Heui Cho
 
Remote temperature monitor (DHT11)
Remote temperature monitor (DHT11)
Parshwadeep Lahane
 
Solution manual the 8051 microcontroller based embedded systems
Solution manual the 8051 microcontroller based embedded systems
manishpatel_79
 
Training Report on embedded Systems and Robotics
Training Report on embedded Systems and Robotics
NIT Raipur
 
Arduino Introduction Presentation
Arduino Introduction Presentation
ericholm
 
180nm process typical parameter values
180nm process typical parameter values
Mark Abadies
 
Embedded system design using arduino
Embedded system design using arduino
Santosh Verma
 
Embedded Firmware Design and Development, and EDLC
Embedded Firmware Design and Development, and EDLC
JuliaAndrews11
 
Distance Measurement by Ultrasonic Sensor
Distance Measurement by Ultrasonic Sensor
Edgefxkits & Solutions
 
LOGIC ANALYSER, ARBITARY WAVE GENERATOR AND WAVE ANALYSER
LOGIC ANALYSER, ARBITARY WAVE GENERATOR AND WAVE ANALYSER
Sumeet Patel
 
Rf based home automation
Rf based home automation
Rahul Saini
 

Similar to Embedded system course projects - Arduino Course (20)

4 IOT 18ISDE712 MODULE 4 IoT Physical Devices and End Point-Aurdino Uno.pdf
4 IOT 18ISDE712 MODULE 4 IoT Physical Devices and End Point-Aurdino Uno.pdf
Jayanthi Kannan MK
 
Arduino intro.pptx
Arduino intro.pptx
SanthanaMari11
 
INTODUCTION OF IOT AND INTERFACING WITH ARDUINO UNO
INTODUCTION OF IOT AND INTERFACING WITH ARDUINO UNO
vasankarponnapalli2
 
Arduino Programming Basic
Arduino Programming Basic
LITS IT Ltd,LASRC.SPACE,SAWDAGOR BD,FREELANCE BD,iREV,BD LAW ACADEMY,SMART AVI,HEA,HFSAC LTD.
 
01 Intro to the Arduino and it's basics.ppt
01 Intro to the Arduino and it's basics.ppt
pindi2197
 
Physical prototyping lab2-analog_digital
Physical prototyping lab2-analog_digital
Tony Olsson.
 
Physical prototyping lab2-analog_digital
Physical prototyping lab2-analog_digital
Tony Olsson.
 
Arduino-workshop.computer engineering.pdf
Arduino-workshop.computer engineering.pdf
AbhishekGiri933736
 
Basics of arduino uno
Basics of arduino uno
Rahat Sood
 
Arduino windows remote control
Arduino windows remote control
VilayatAli5
 
Fun with arduino
Fun with arduino
Ravikumar Tiwari
 
arduino and its introduction deep dive ppt.pptx
arduino and its introduction deep dive ppt.pptx
SruSru1
 
Automatic irrigation system using Arduino
Automatic irrigation system using Arduino
BalajiK109
 
ARDUINO (1).pdf
ARDUINO (1).pdf
SoumikBanerjee43
 
Arduino Workshop (3).pptx
Arduino Workshop (3).pptx
HebaEng
 
Arduino Programming Familiarization
Arduino Programming Familiarization
Amit Kumer Podder
 
Embedded systems optimization memory requirments.pptx
Embedded systems optimization memory requirments.pptx
satheeshKumar750
 
How to use an Arduino
How to use an Arduino
AntonAndreev13
 
ARDUINO AND ITS PIN CONFIGURATION
ARDUINO AND ITS PIN CONFIGURATION
soma saikiran
 
Arduino اردوينو
Arduino اردوينو
salih mahmod
 
4 IOT 18ISDE712 MODULE 4 IoT Physical Devices and End Point-Aurdino Uno.pdf
4 IOT 18ISDE712 MODULE 4 IoT Physical Devices and End Point-Aurdino Uno.pdf
Jayanthi Kannan MK
 
INTODUCTION OF IOT AND INTERFACING WITH ARDUINO UNO
INTODUCTION OF IOT AND INTERFACING WITH ARDUINO UNO
vasankarponnapalli2
 
01 Intro to the Arduino and it's basics.ppt
01 Intro to the Arduino and it's basics.ppt
pindi2197
 
Physical prototyping lab2-analog_digital
Physical prototyping lab2-analog_digital
Tony Olsson.
 
Physical prototyping lab2-analog_digital
Physical prototyping lab2-analog_digital
Tony Olsson.
 
Arduino-workshop.computer engineering.pdf
Arduino-workshop.computer engineering.pdf
AbhishekGiri933736
 
Basics of arduino uno
Basics of arduino uno
Rahat Sood
 
Arduino windows remote control
Arduino windows remote control
VilayatAli5
 
arduino and its introduction deep dive ppt.pptx
arduino and its introduction deep dive ppt.pptx
SruSru1
 
Automatic irrigation system using Arduino
Automatic irrigation system using Arduino
BalajiK109
 
Arduino Workshop (3).pptx
Arduino Workshop (3).pptx
HebaEng
 
Arduino Programming Familiarization
Arduino Programming Familiarization
Amit Kumer Podder
 
Embedded systems optimization memory requirments.pptx
Embedded systems optimization memory requirments.pptx
satheeshKumar750
 
ARDUINO AND ITS PIN CONFIGURATION
ARDUINO AND ITS PIN CONFIGURATION
soma saikiran
 
Arduino اردوينو
Arduino اردوينو
salih mahmod
 
Ad

More from Elaf A.Saeed (20)

IOT NodeMCU - NodeMCU Webserver
IOT NodeMCU - NodeMCU Webserver
Elaf A.Saeed
 
IOT NodeMCU - Ubidots Platform to Turn on LEDs
IOT NodeMCU - Ubidots Platform to Turn on LEDs
Elaf A.Saeed
 
IOT NodeMCU - Thinger Platform to Turn on LEDs
IOT NodeMCU - Thinger Platform to Turn on LEDs
Elaf A.Saeed
 
IOT NodeMCU - IFTTT Templet to send SMS
IOT NodeMCU - IFTTT Templet to send SMS
Elaf A.Saeed
 
Getting date and time from ntp server with esp8266 node mcu
Getting date and time from ntp server with esp8266 node mcu
Elaf A.Saeed
 
ESP8266 NodeMCU Server, Client, Station Mode, and Client Control LED
ESP8266 NodeMCU Server, Client, Station Mode, and Client Control LED
Elaf A.Saeed
 
IOT NodeMCU - NodeMCU Connection to Internet
IOT NodeMCU - NodeMCU Connection to Internet
Elaf A.Saeed
 
Lesson 10- NodeMCU with LCD I2C
Lesson 10- NodeMCU with LCD I2C
Elaf A.Saeed
 
Lesson 9- NodeMCU with Arduino UNO (UART)
Lesson 9- NodeMCU with Arduino UNO (UART)
Elaf A.Saeed
 
Lesson 8- NodeMCU with Servo Motor
Lesson 8- NodeMCU with Servo Motor
Elaf A.Saeed
 
Lesson 7- NodeMCU with DC Motor
Lesson 7- NodeMCU with DC Motor
Elaf A.Saeed
 
Lesson 6 - NodeMCU with PWM Pin
Lesson 6 - NodeMCU with PWM Pin
Elaf A.Saeed
 
lesson4 - NodeMCU control led
lesson4 - NodeMCU control led
Elaf A.Saeed
 
lesson2 - Nodemcu course - NodeMCU dev Board
lesson2 - Nodemcu course - NodeMCU dev Board
Elaf A.Saeed
 
lesson1 - Getting Started with ESP8266
lesson1 - Getting Started with ESP8266
Elaf A.Saeed
 
Embedded system introduction - Arduino Course
Embedded system introduction - Arduino Course
Elaf A.Saeed
 
Pyton with rasperry pi
Pyton with rasperry pi
Elaf A.Saeed
 
Summary of MATLAB Functions-Part1
Summary of MATLAB Functions-Part1
Elaf A.Saeed
 
MATLAB Basics-Part1
MATLAB Basics-Part1
Elaf A.Saeed
 
Python basics_ part1
Python basics_ part1
Elaf A.Saeed
 
IOT NodeMCU - NodeMCU Webserver
IOT NodeMCU - NodeMCU Webserver
Elaf A.Saeed
 
IOT NodeMCU - Ubidots Platform to Turn on LEDs
IOT NodeMCU - Ubidots Platform to Turn on LEDs
Elaf A.Saeed
 
IOT NodeMCU - Thinger Platform to Turn on LEDs
IOT NodeMCU - Thinger Platform to Turn on LEDs
Elaf A.Saeed
 
IOT NodeMCU - IFTTT Templet to send SMS
IOT NodeMCU - IFTTT Templet to send SMS
Elaf A.Saeed
 
Getting date and time from ntp server with esp8266 node mcu
Getting date and time from ntp server with esp8266 node mcu
Elaf A.Saeed
 
ESP8266 NodeMCU Server, Client, Station Mode, and Client Control LED
ESP8266 NodeMCU Server, Client, Station Mode, and Client Control LED
Elaf A.Saeed
 
IOT NodeMCU - NodeMCU Connection to Internet
IOT NodeMCU - NodeMCU Connection to Internet
Elaf A.Saeed
 
Lesson 10- NodeMCU with LCD I2C
Lesson 10- NodeMCU with LCD I2C
Elaf A.Saeed
 
Lesson 9- NodeMCU with Arduino UNO (UART)
Lesson 9- NodeMCU with Arduino UNO (UART)
Elaf A.Saeed
 
Lesson 8- NodeMCU with Servo Motor
Lesson 8- NodeMCU with Servo Motor
Elaf A.Saeed
 
Lesson 7- NodeMCU with DC Motor
Lesson 7- NodeMCU with DC Motor
Elaf A.Saeed
 
Lesson 6 - NodeMCU with PWM Pin
Lesson 6 - NodeMCU with PWM Pin
Elaf A.Saeed
 
lesson4 - NodeMCU control led
lesson4 - NodeMCU control led
Elaf A.Saeed
 
lesson2 - Nodemcu course - NodeMCU dev Board
lesson2 - Nodemcu course - NodeMCU dev Board
Elaf A.Saeed
 
lesson1 - Getting Started with ESP8266
lesson1 - Getting Started with ESP8266
Elaf A.Saeed
 
Embedded system introduction - Arduino Course
Embedded system introduction - Arduino Course
Elaf A.Saeed
 
Pyton with rasperry pi
Pyton with rasperry pi
Elaf A.Saeed
 
Summary of MATLAB Functions-Part1
Summary of MATLAB Functions-Part1
Elaf A.Saeed
 
MATLAB Basics-Part1
MATLAB Basics-Part1
Elaf A.Saeed
 
Python basics_ part1
Python basics_ part1
Elaf A.Saeed
 
Ad

Recently uploaded (20)

PyData - Graph Theory for Multi-Agent Integration
PyData - Graph Theory for Multi-Agent Integration
barqawicloud
 
MuleSoft for AgentForce : Topic Center and API Catalog
MuleSoft for AgentForce : Topic Center and API Catalog
shyamraj55
 
Data Validation and System Interoperability
Data Validation and System Interoperability
Safe Software
 
The State of Web3 Industry- Industry Report
The State of Web3 Industry- Industry Report
Liveplex
 
Your startup on AWS - How to architect and maintain a Lean and Mean account J...
Your startup on AWS - How to architect and maintain a Lean and Mean account J...
angelo60207
 
Crypto Super 500 - 14th Report - June2025.pdf
Crypto Super 500 - 14th Report - June2025.pdf
Stephen Perrenod
 
Viral>Wondershare Filmora 14.5.18.12900 Crack Free Download
Viral>Wondershare Filmora 14.5.18.12900 Crack Free Download
Puppy jhon
 
Oracle Cloud and AI Specialization Program
Oracle Cloud and AI Specialization Program
VICTOR MAESTRE RAMIREZ
 
FME for Distribution & Transmission Integrity Management Program (DIMP & TIMP)
FME for Distribution & Transmission Integrity Management Program (DIMP & TIMP)
Safe Software
 
“Addressing Evolving AI Model Challenges Through Memory and Storage,” a Prese...
“Addressing Evolving AI Model Challenges Through Memory and Storage,” a Prese...
Edge AI and Vision Alliance
 
Edge-banding-machines-edgeteq-s-200-en-.pdf
Edge-banding-machines-edgeteq-s-200-en-.pdf
AmirStern2
 
Oracle Cloud Infrastructure Generative AI Professional
Oracle Cloud Infrastructure Generative AI Professional
VICTOR MAESTRE RAMIREZ
 
Introduction to Typescript - GDG On Campus EUE
Introduction to Typescript - GDG On Campus EUE
Google Developer Group On Campus European Universities in Egypt
 
AudGram Review: Build Visually Appealing, AI-Enhanced Audiograms to Engage Yo...
AudGram Review: Build Visually Appealing, AI-Enhanced Audiograms to Engage Yo...
SOFTTECHHUB
 
Agentic AI: Beyond the Buzz- LangGraph Studio V2
Agentic AI: Beyond the Buzz- LangGraph Studio V2
Shashikant Jagtap
 
Floods in Valencia: Two FME-Powered Stories of Data Resilience
Floods in Valencia: Two FME-Powered Stories of Data Resilience
Safe Software
 
No-Code Workflows for CAD & 3D Data: Scaling AI-Driven Infrastructure
No-Code Workflows for CAD & 3D Data: Scaling AI-Driven Infrastructure
Safe Software
 
Scaling GenAI Inference From Prototype to Production: Real-World Lessons in S...
Scaling GenAI Inference From Prototype to Production: Real-World Lessons in S...
Anish Kumar
 
FIDO Seminar: Authentication for a Billion Consumers - Amazon.pptx
FIDO Seminar: Authentication for a Billion Consumers - Amazon.pptx
FIDO Alliance
 
Integration of Utility Data into 3D BIM Models Using a 3D Solids Modeling Wor...
Integration of Utility Data into 3D BIM Models Using a 3D Solids Modeling Wor...
Safe Software
 
PyData - Graph Theory for Multi-Agent Integration
PyData - Graph Theory for Multi-Agent Integration
barqawicloud
 
MuleSoft for AgentForce : Topic Center and API Catalog
MuleSoft for AgentForce : Topic Center and API Catalog
shyamraj55
 
Data Validation and System Interoperability
Data Validation and System Interoperability
Safe Software
 
The State of Web3 Industry- Industry Report
The State of Web3 Industry- Industry Report
Liveplex
 
Your startup on AWS - How to architect and maintain a Lean and Mean account J...
Your startup on AWS - How to architect and maintain a Lean and Mean account J...
angelo60207
 
Crypto Super 500 - 14th Report - June2025.pdf
Crypto Super 500 - 14th Report - June2025.pdf
Stephen Perrenod
 
Viral>Wondershare Filmora 14.5.18.12900 Crack Free Download
Viral>Wondershare Filmora 14.5.18.12900 Crack Free Download
Puppy jhon
 
Oracle Cloud and AI Specialization Program
Oracle Cloud and AI Specialization Program
VICTOR MAESTRE RAMIREZ
 
FME for Distribution & Transmission Integrity Management Program (DIMP & TIMP)
FME for Distribution & Transmission Integrity Management Program (DIMP & TIMP)
Safe Software
 
“Addressing Evolving AI Model Challenges Through Memory and Storage,” a Prese...
“Addressing Evolving AI Model Challenges Through Memory and Storage,” a Prese...
Edge AI and Vision Alliance
 
Edge-banding-machines-edgeteq-s-200-en-.pdf
Edge-banding-machines-edgeteq-s-200-en-.pdf
AmirStern2
 
Oracle Cloud Infrastructure Generative AI Professional
Oracle Cloud Infrastructure Generative AI Professional
VICTOR MAESTRE RAMIREZ
 
AudGram Review: Build Visually Appealing, AI-Enhanced Audiograms to Engage Yo...
AudGram Review: Build Visually Appealing, AI-Enhanced Audiograms to Engage Yo...
SOFTTECHHUB
 
Agentic AI: Beyond the Buzz- LangGraph Studio V2
Agentic AI: Beyond the Buzz- LangGraph Studio V2
Shashikant Jagtap
 
Floods in Valencia: Two FME-Powered Stories of Data Resilience
Floods in Valencia: Two FME-Powered Stories of Data Resilience
Safe Software
 
No-Code Workflows for CAD & 3D Data: Scaling AI-Driven Infrastructure
No-Code Workflows for CAD & 3D Data: Scaling AI-Driven Infrastructure
Safe Software
 
Scaling GenAI Inference From Prototype to Production: Real-World Lessons in S...
Scaling GenAI Inference From Prototype to Production: Real-World Lessons in S...
Anish Kumar
 
FIDO Seminar: Authentication for a Billion Consumers - Amazon.pptx
FIDO Seminar: Authentication for a Billion Consumers - Amazon.pptx
FIDO Alliance
 
Integration of Utility Data into 3D BIM Models Using a 3D Solids Modeling Wor...
Integration of Utility Data into 3D BIM Models Using a 3D Solids Modeling Wor...
Safe Software
 

Embedded system course projects - Arduino Course