Arduino IDE

About This Presentation
Title:

Arduino IDE

Description:

Here we going to discus how to make a program in Arduino IDE. – PowerPoint PPT presentation

Number of Views:1243

less

Transcript and Presenter's Notes

Title: Arduino IDE


1
ARDUINOIDE
2
ARDUINO Developing Environment
NOTE Always select the correct COM Port in
which Arduino Board is selected.


3
ARDUINO Essentials
  • void setup( )
  • Description
  • All the Modes of Pins are declared within this
    function.
  • void loop( )
  • Description
  • Declaration of variables, functions which should
    execute itself repetitively.

4
ARDUINO Essentials
  • PinMode ( )
  • Description
  • Configures the specified pin to behave either as
    an input or an output.
  • Syntax
  • pinMode(pin,mode)
  • Pin The Pin no.
  • Mode INPUT, OUTPUT or  INPUT_PULLUP

5
ARDUINO Digital Function( )
  • digitalRead( )
  • Description
  • Function to read digital values from Digital
    Pins.
  • Syntax
  • digitalRead (pin)
  • digitalWrite( )
  • Description
  • Function to Write digital value command to
    Digital
  • Pins.
  • Syntax
  • digitalWrite (pin, value)

6
Analog Function ( )
  • analogRead( )
  • Description
  • Function to read analog values from Analog
  • Pins.
  • Syntax
  • analogRead (pin)
  • analogWrite( )
  • Description
  • Function to Write analog value command to Analog
  • Pins.
  • Syntax
  • analogWrite (pin, value)

ARDINO
Write a Comment
User Comments (0)