You are on page 1of 15

ARDUINO UNO R3

Understanding
The Arduino UNO R3
Board
Picking the Right Arduino Board
Arduino programming language is a
derived version of C Language.
Difference is few additive and
modified functions for hardware
programming. So, if you already
know C language you are all set with
basics you just need to grasp few
Arduino functions.
CORE COMPONENTS OF ARDUINO SKETCH

• Arduino programming is based on few key things. The


main part of Arduino Sketch is its two built-in functions.
• void setup()
• void loop()
Essential Functions
• pinMode()
– This function take two parameters – pinMode(pin_num,type)
– Exp: pinMode(5,OUTPUT)
• digitalRead()
– This function is used to take input from digital pin.
– Exp: digitalRead(5) // take only one parameter.
• digitalWrite()
– This function is used to give out digital output 1 or 0.
• analogRead()
– this function enables us to read analog input.
• analogWrite()
– This function helps us to give analog output.
• Delay()
– This function pauses further execution of the program.
– Exp: delay(1000)
ARDUINO IDE
Breadboard
Circuit Design - Tinkercad
Circuit Design - Tinkercad
Circuit Design - Tinkercad

You might also like