1 / 6

Arduino_IDE

Here we going to discus how to make a program in Arduino IDE.

Download Presentation

Arduino_IDE

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. ARDUINOIDE http://aicra.ac.in

  2. ARDUINO | Developing Environment NOTE: Always select the correct COM Port in which Arduino Board is selected. + = http://aicra.ac.in

  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. http://aicra.ac.in

  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 http://www.thinkerguru.com

  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) http://aicra.ac.in

  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 | http://aicra.ac.in

More Related