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
Ad

More Related Content

What's hot (20)

Introduction to AVR Microcontroller
Introduction to AVR Microcontroller Introduction to AVR Microcontroller
Introduction to AVR Microcontroller
Mahmoud Sadat
 
microcontroller vs microprocessor
microcontroller vs microprocessormicrocontroller vs microprocessor
microcontroller vs microprocessor
sobhadevi
 
Introduction to Embedded System
Introduction to Embedded SystemIntroduction to Embedded System
Introduction to Embedded System
Zakaria Gomaa
 
AVR ATmega32
AVR ATmega32AVR ATmega32
AVR ATmega32
Prashant Tiwari
 
PPT ON Arduino
PPT ON Arduino PPT ON Arduino
PPT ON Arduino
Ravi Phadtare
 
Introduction to Arduino
Introduction to ArduinoIntroduction to Arduino
Introduction to Arduino
Omer Kilic
 
Embedded system
Embedded systemEmbedded system
Embedded system
CHANCHAL SONI
 
Interrupt latency and its measurements methods
Interrupt latency and its measurements methodsInterrupt latency and its measurements methods
Interrupt latency and its measurements methods
s60030
 
Bluetooth controled robot
Bluetooth controled robotBluetooth controled robot
Bluetooth controled robot
Stuart Stuart
 
microprocessor-and-microcontroller
microprocessor-and-microcontrollermicroprocessor-and-microcontroller
microprocessor-and-microcontroller
jhcid
 
Arduino
ArduinoArduino
Arduino
Jerin John
 
Voice recognition based home automation system for paralyzed people
Voice recognition based home automation system for paralyzed peopleVoice recognition based home automation system for paralyzed people
Voice recognition based home automation system for paralyzed people
lal ahmed shaik
 
Analog & Digital Integrated Circuits (Question Bank)
Analog & Digital Integrated Circuits (Question Bank)Analog & Digital Integrated Circuits (Question Bank)
Analog & Digital Integrated Circuits (Question Bank)
Mathankumar S
 
Embedded system
Embedded systemEmbedded system
Embedded system
Anmol Bagga
 
45891026 brain-computer-interface-seminar-report
45891026 brain-computer-interface-seminar-report45891026 brain-computer-interface-seminar-report
45891026 brain-computer-interface-seminar-report
kapilpanwariet
 
EMBEDDED SYSTEMS
EMBEDDED SYSTEMSEMBEDDED SYSTEMS
EMBEDDED SYSTEMS
karthikas82
 
PIC Microcontrollers
PIC MicrocontrollersPIC Microcontrollers
PIC Microcontrollers
Abdullah Saghir Ahmad
 
Embedded systems
Embedded systemsEmbedded systems
Embedded systems
Islam Mohamed Salah
 
Embedded systems career -An outline
Embedded systems career -An outlineEmbedded systems career -An outline
Embedded systems career -An outline
Dr.YNM
 
Big Smart Note Traker
Big Smart Note TrakerBig Smart Note Traker
Big Smart Note Traker
BECME
 
Introduction to AVR Microcontroller
Introduction to AVR Microcontroller Introduction to AVR Microcontroller
Introduction to AVR Microcontroller
Mahmoud Sadat
 
microcontroller vs microprocessor
microcontroller vs microprocessormicrocontroller vs microprocessor
microcontroller vs microprocessor
sobhadevi
 
Introduction to Embedded System
Introduction to Embedded SystemIntroduction to Embedded System
Introduction to Embedded System
Zakaria Gomaa
 
Introduction to Arduino
Introduction to ArduinoIntroduction to Arduino
Introduction to Arduino
Omer Kilic
 
Interrupt latency and its measurements methods
Interrupt latency and its measurements methodsInterrupt latency and its measurements methods
Interrupt latency and its measurements methods
s60030
 
Bluetooth controled robot
Bluetooth controled robotBluetooth controled robot
Bluetooth controled robot
Stuart Stuart
 
microprocessor-and-microcontroller
microprocessor-and-microcontrollermicroprocessor-and-microcontroller
microprocessor-and-microcontroller
jhcid
 
Voice recognition based home automation system for paralyzed people
Voice recognition based home automation system for paralyzed peopleVoice recognition based home automation system for paralyzed people
Voice recognition based home automation system for paralyzed people
lal ahmed shaik
 
Analog & Digital Integrated Circuits (Question Bank)
Analog & Digital Integrated Circuits (Question Bank)Analog & Digital Integrated Circuits (Question Bank)
Analog & Digital Integrated Circuits (Question Bank)
Mathankumar S
 
45891026 brain-computer-interface-seminar-report
45891026 brain-computer-interface-seminar-report45891026 brain-computer-interface-seminar-report
45891026 brain-computer-interface-seminar-report
kapilpanwariet
 
EMBEDDED SYSTEMS
EMBEDDED SYSTEMSEMBEDDED SYSTEMS
EMBEDDED SYSTEMS
karthikas82
 
Embedded systems career -An outline
Embedded systems career -An outlineEmbedded systems career -An outline
Embedded systems career -An outline
Dr.YNM
 
Big Smart Note Traker
Big Smart Note TrakerBig Smart Note Traker
Big Smart Note Traker
BECME
 

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.pdf4 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.pptxArduino intro.pptx
Arduino intro.pptx
SanthanaMari11
 
INTODUCTION OF IOT AND INTERFACING WITH ARDUINO UNO
INTODUCTION OF IOT AND INTERFACING WITH ARDUINO UNOINTODUCTION OF IOT AND INTERFACING WITH ARDUINO UNO
INTODUCTION OF IOT AND INTERFACING WITH ARDUINO UNO
vasankarponnapalli2
 
Arduino Programming Basic
Arduino Programming BasicArduino 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.ppt01 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_digitalPhysical prototyping lab2-analog_digital
Physical prototyping lab2-analog_digital
Tony Olsson.
 
Physical prototyping lab2-analog_digital
Physical prototyping lab2-analog_digitalPhysical prototyping lab2-analog_digital
Physical prototyping lab2-analog_digital
Tony Olsson.
 
Basics of arduino uno
Basics of arduino unoBasics of arduino uno
Basics of arduino uno
Rahat Sood
 
Arduino windows remote control
Arduino windows remote controlArduino windows remote control
Arduino windows remote control
VilayatAli5
 
Fun with arduino
Fun with arduinoFun with arduino
Fun with arduino
Ravikumar Tiwari
 
arduino and its introduction deep dive ppt.pptx
arduino and its introduction deep dive ppt.pptxarduino 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 ArduinoAutomatic irrigation system using Arduino
Automatic irrigation system using Arduino
BalajiK109
 
ARDUINO (1).pdf
ARDUINO (1).pdfARDUINO (1).pdf
ARDUINO (1).pdf
SoumikBanerjee43
 
Arduino Workshop (3).pptx
Arduino Workshop (3).pptxArduino Workshop (3).pptx
Arduino Workshop (3).pptx
HebaEng
 
Arduino Programming Familiarization
Arduino Programming FamiliarizationArduino Programming Familiarization
Arduino Programming Familiarization
Amit Kumer Podder
 
Embedded systems optimization memory requirments.pptx
Embedded systems optimization memory requirments.pptxEmbedded systems optimization memory requirments.pptx
Embedded systems optimization memory requirments.pptx
satheeshKumar750
 
How to use an Arduino
How to use an ArduinoHow to use an Arduino
How to use an Arduino
AntonAndreev13
 
ARDUINO AND ITS PIN CONFIGURATION
 ARDUINO AND ITS PIN  CONFIGURATION ARDUINO AND ITS PIN  CONFIGURATION
ARDUINO AND ITS PIN CONFIGURATION
soma saikiran
 
Introduction to Arduino
Introduction to ArduinoIntroduction to Arduino
Introduction to Arduino
Luki B. Subekti
 
Arduino cic3
Arduino cic3Arduino cic3
Arduino cic3
Jeni Shah
 
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.pdf4 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 UNOINTODUCTION 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.ppt01 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_digitalPhysical prototyping lab2-analog_digital
Physical prototyping lab2-analog_digital
Tony Olsson.
 
Physical prototyping lab2-analog_digital
Physical prototyping lab2-analog_digitalPhysical prototyping lab2-analog_digital
Physical prototyping lab2-analog_digital
Tony Olsson.
 
Basics of arduino uno
Basics of arduino unoBasics of arduino uno
Basics of arduino uno
Rahat Sood
 
Arduino windows remote control
Arduino windows remote controlArduino windows remote control
Arduino windows remote control
VilayatAli5
 
arduino and its introduction deep dive ppt.pptx
arduino and its introduction deep dive ppt.pptxarduino 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 ArduinoAutomatic irrigation system using Arduino
Automatic irrigation system using Arduino
BalajiK109
 
Arduino Workshop (3).pptx
Arduino Workshop (3).pptxArduino Workshop (3).pptx
Arduino Workshop (3).pptx
HebaEng
 
Arduino Programming Familiarization
Arduino Programming FamiliarizationArduino Programming Familiarization
Arduino Programming Familiarization
Amit Kumer Podder
 
Embedded systems optimization memory requirments.pptx
Embedded systems optimization memory requirments.pptxEmbedded systems optimization memory requirments.pptx
Embedded systems optimization memory requirments.pptx
satheeshKumar750
 
ARDUINO AND ITS PIN CONFIGURATION
 ARDUINO AND ITS PIN  CONFIGURATION ARDUINO AND ITS PIN  CONFIGURATION
ARDUINO AND ITS PIN CONFIGURATION
soma saikiran
 
Arduino cic3
Arduino cic3Arduino cic3
Arduino cic3
Jeni Shah
 
Ad

More from Elaf A.Saeed (20)

IOT NodeMCU - NodeMCU Webserver
IOT NodeMCU - NodeMCU WebserverIOT 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 LEDsIOT 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 LEDsIOT 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 SMSIOT 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 mcuGetting 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 LEDESP8266 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 InternetIOT 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 I2CLesson 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)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 MotorLesson 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 MotorLesson 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 PinLesson 6 -  NodeMCU with PWM Pin
Lesson 6 - NodeMCU with PWM Pin
Elaf A.Saeed
 
lesson4 - NodeMCU control led
  lesson4 - NodeMCU control led  lesson4 - NodeMCU control led
lesson4 - NodeMCU control led
Elaf A.Saeed
 
lesson2 - Nodemcu course - NodeMCU dev Board
 lesson2 - Nodemcu course - NodeMCU dev Board lesson2 - Nodemcu course - NodeMCU dev Board
lesson2 - Nodemcu course - NodeMCU dev Board
Elaf A.Saeed
 
lesson1 - Getting Started with ESP8266
lesson1 -  Getting Started with ESP8266lesson1 -  Getting Started with ESP8266
lesson1 - Getting Started with ESP8266
Elaf A.Saeed
 
Pyton with rasperry pi
Pyton with rasperry piPyton with rasperry pi
Pyton with rasperry pi
Elaf A.Saeed
 
Summary of MATLAB Functions-Part1
Summary of MATLAB Functions-Part1Summary of MATLAB Functions-Part1
Summary of MATLAB Functions-Part1
Elaf A.Saeed
 
MATLAB Basics-Part1
MATLAB Basics-Part1MATLAB Basics-Part1
MATLAB Basics-Part1
Elaf A.Saeed
 
Python basics_ part1
Python basics_ part1Python basics_ part1
Python basics_ part1
Elaf A.Saeed
 
How to be Healthy
How to be HealthyHow to be Healthy
How to be Healthy
Elaf A.Saeed
 
IOT NodeMCU - NodeMCU Webserver
IOT NodeMCU - NodeMCU WebserverIOT 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 LEDsIOT 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 LEDsIOT 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 SMSIOT 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 mcuGetting 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 LEDESP8266 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 InternetIOT 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 I2CLesson 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)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 MotorLesson 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 MotorLesson 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 PinLesson 6 -  NodeMCU with PWM Pin
Lesson 6 - NodeMCU with PWM Pin
Elaf A.Saeed
 
lesson4 - NodeMCU control led
  lesson4 - NodeMCU control led  lesson4 - NodeMCU control led
lesson4 - NodeMCU control led
Elaf A.Saeed
 
lesson2 - Nodemcu course - NodeMCU dev Board
 lesson2 - Nodemcu course - NodeMCU dev Board lesson2 - Nodemcu course - NodeMCU dev Board
lesson2 - Nodemcu course - NodeMCU dev Board
Elaf A.Saeed
 
lesson1 - Getting Started with ESP8266
lesson1 -  Getting Started with ESP8266lesson1 -  Getting Started with ESP8266
lesson1 - Getting Started with ESP8266
Elaf A.Saeed
 
Pyton with rasperry pi
Pyton with rasperry piPyton with rasperry pi
Pyton with rasperry pi
Elaf A.Saeed
 
Summary of MATLAB Functions-Part1
Summary of MATLAB Functions-Part1Summary of MATLAB Functions-Part1
Summary of MATLAB Functions-Part1
Elaf A.Saeed
 
MATLAB Basics-Part1
MATLAB Basics-Part1MATLAB Basics-Part1
MATLAB Basics-Part1
Elaf A.Saeed
 
Python basics_ part1
Python basics_ part1Python basics_ part1
Python basics_ part1
Elaf A.Saeed
 
Ad

Recently uploaded (20)

ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes
 
Mastering Advance Window Functions in SQL.pdf
Mastering Advance Window Functions in SQL.pdfMastering Advance Window Functions in SQL.pdf
Mastering Advance Window Functions in SQL.pdf
Spiral Mantra
 
Vaibhav Gupta BAML: AI work flows without Hallucinations
Vaibhav Gupta BAML: AI work flows without HallucinationsVaibhav Gupta BAML: AI work flows without Hallucinations
Vaibhav Gupta BAML: AI work flows without Hallucinations
john409870
 
tecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdftecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdf
fjgm517
 
Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)
Ortus Solutions, Corp
 
Quantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur MorganQuantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Top 10 IT Help Desk Outsourcing Services
Top 10 IT Help Desk Outsourcing ServicesTop 10 IT Help Desk Outsourcing Services
Top 10 IT Help Desk Outsourcing Services
Infrassist Technologies Pvt. Ltd.
 
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc
 
Procurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptxProcurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptx
Jon Hansen
 
TrsLabs - Fintech Product & Business Consulting
TrsLabs - Fintech Product & Business ConsultingTrsLabs - Fintech Product & Business Consulting
TrsLabs - Fintech Product & Business Consulting
Trs Labs
 
Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.
hpbmnnxrvb
 
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptxSpecial Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
shyamraj55
 
TrsLabs Consultants - DeFi, WEb3, Token Listing
TrsLabs Consultants - DeFi, WEb3, Token ListingTrsLabs Consultants - DeFi, WEb3, Token Listing
TrsLabs Consultants - DeFi, WEb3, Token Listing
Trs Labs
 
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager APIUiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPathCommunity
 
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
BookNet Canada
 
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep DiveDesigning Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
ScyllaDB
 
Big Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur MorganBig Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath MaestroDev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
UiPathCommunity
 
AI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global TrendsAI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global Trends
InData Labs
 
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
organizerofv
 
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes
 
Mastering Advance Window Functions in SQL.pdf
Mastering Advance Window Functions in SQL.pdfMastering Advance Window Functions in SQL.pdf
Mastering Advance Window Functions in SQL.pdf
Spiral Mantra
 
Vaibhav Gupta BAML: AI work flows without Hallucinations
Vaibhav Gupta BAML: AI work flows without HallucinationsVaibhav Gupta BAML: AI work flows without Hallucinations
Vaibhav Gupta BAML: AI work flows without Hallucinations
john409870
 
tecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdftecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdf
fjgm517
 
Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)
Ortus Solutions, Corp
 
Quantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur MorganQuantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur Morgan
Arthur Morgan
 
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc
 
Procurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptxProcurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptx
Jon Hansen
 
TrsLabs - Fintech Product & Business Consulting
TrsLabs - Fintech Product & Business ConsultingTrsLabs - Fintech Product & Business Consulting
TrsLabs - Fintech Product & Business Consulting
Trs Labs
 
Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.
hpbmnnxrvb
 
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptxSpecial Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
shyamraj55
 
TrsLabs Consultants - DeFi, WEb3, Token Listing
TrsLabs Consultants - DeFi, WEb3, Token ListingTrsLabs Consultants - DeFi, WEb3, Token Listing
TrsLabs Consultants - DeFi, WEb3, Token Listing
Trs Labs
 
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager APIUiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPathCommunity
 
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
BookNet Canada
 
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep DiveDesigning Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
Designing Low-Latency Systems with Rust and ScyllaDB: An Architectural Deep Dive
ScyllaDB
 
Big Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur MorganBig Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath MaestroDev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
UiPathCommunity
 
AI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global TrendsAI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global Trends
InData Labs
 
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
organizerofv
 

Embedded system course projects - Arduino Course