arduino 01-01&02

Upload: chandra-tjong

Post on 07-Oct-2015

215 views

Category:

Documents


0 download

DESCRIPTION

Arduino 01-01&02

TRANSCRIPT

Arduino Examples Program

Core Functions :

1. Basics

- BareMinimum:Bare Minimum code needed to get startedThis example contains the bare minimum of code you need for an Arduino sketch to compile: thesetup()method and theloop()method.Hardware RequiredArduino BoardCircuitOnly your Arduino Board is needed for this example.

CodeThesetup()function is called when a sketch starts. Use it to initialize variables, pin modes, start using libraries, etc. The setup function will only run once, after each powerup or reset of the Arduino board.After creating asetup()function, theloop()function does precisely what its name suggests, and loops consecutively, allowing your program to change and respond as it runs. Code in theloop()section of your sketch is used to actively control the Arduino board.The code below won't actually do anything, but it's structure is useful for copying and pasting to get you started on any sketch of your own. It also shows you how to make comments in your code.Any line that starts with two slashes (//) will not be read by the compiler, so you can write anything you want after it. Commenting your code like this can be particularly helpful in explaining, both to yourself and others, how your program functions step by step.voidsetup(){// put your setup code here, to run once:

}

voidloop(){// put your main code here, to run repeatedly:}

- BlinkBlinkThis example shows the simplest thing you can do with an Arduino to see physical output: it blinks an LED.Hardware Required- Arduino Board- A LED- A Resistor, anything between 220 ohm to 1K ohm

CircuitTo build the circuit, connect one end of the resistor to Arduino pin 13. Connect the long leg of the LED (the positive leg, called the anode) to the other end of the resistor. Connect the short leg of the LED (the negative leg, called the cathode) to the Arduino GND, as shown in the diagram and the schematic below.Most Arduino boards already have an LED attached to pin 13 on the board itself. If you run this example with no hardware attached, you should see that LED blink.

Schematic

After you build the circuit plug your Arduino board into your computer, start the Arduino IDE, and enter the code below.CodeIn the program below, the first thing you do is to initialize pin 13 as an output pin with the linepinMode(13, OUTPUT);In the main loop, you turn the LED on with the line:digitalWrite(13, HIGH);This supplies 5 volts to pin 13. That creates a voltage difference across the pins of the LED, and lights it up. Then you turn it off with the line:digitalWrite(13, LOW);That takes pin 13 back to 0 volts, and turns the LED off. In between the on and the off, you want enough time for a person to see the change, so thedelay()commands tell the Arduino to do nothing for 1000 milliseconds, or one second. When you use thedelay()command, nothing else happens for that amount of time. Once you've understood the basic examples, check out theBlinkWithoutDelayexample to learn how to create a delay while doing other things.Once you've understood this example, check out theDigitalReadSerialexample to learn how read a switch connected to the Arduino./* Blink Turns on an LED on for one second, then off for one second, repeatedly. This example code is in the public domain.*/// Pin 13 has an LED connected on most Arduino boards.// give it a name:intled=13;

// the setup routine runs once when you press reset:voidsetup(){ // initialize the digital pin as an output.pinMode(led,OUTPUT); }

// the loop routine runs over and over again forever:voidloop(){digitalWrite(led,HIGH);// turn the LED on (HIGH is the voltage level)delay(1000); // wait for a seconddigitalWrite(led,LOW); // turn the LED off by making the voltage LOWdelay(1000); // wait for a second}