2 Getting Started With Arduino; 3 Tutorial; Blinking A Led - DFRobot DFR0100 Manual

Beginner kit for arduino v3
Table of Contents

Advertisement

25/06/2015
Getting Started with Arduino
Introduction (http://arduino.cc/en/Guide/Introduction): What Arduino is and why you'd want to use it. 
Installation: Step­by­step instructions for setting up the Arduino software and connecting it to an Arduino Uno.
Windows (http://arduino.cc/en/Guide/Windows) Mac OS X (http://arduino.cc/en/Guide/MacOSX) 
Environment (http://arduino.cc/en/Guide/Environment): Description of the Arduino development environment and
how to change the default language. 
Libraries (http://arduino.cc/en/Guide/Libraries): Using and installing Arduino libraries.
Tutorial
1.Blinking a LED
?
1
/*
2
 # Description:    
3
 # Turns on an LED on for one second, then off for one second, repeatedly.
4
*/
5
 
int
ledPin = 10;
6
 
void
setup() {
7
        pinMode(ledPin, OUTPUT);
8
}
9
 
void
loop() {
10
        digitalWrite(ledPin,HIGH);
11
        delay(1000);
http://www.dfrobot.com/wiki/index.php/DFRduino_Beginner_Kit_For_Arduino_V3_SKU:DFR0100
DFRduino Beginner Kit For Arduino V3 SKU:DFR0100 ­ Robot Wiki
2/23

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the DFR0100 and is the answer not in the manual?

Questions and answers

Table of Contents