DFRduino Beginner Kit For Arduino V3 SKU:DFR0100
Contents
1 Introduction
2 Getting Started with Arduino
3 Tutorial
3.1 Blinking a LED
3.2 SOS Beacon
3.3 Traffic Light
3.4 Fading Light
3.5 RGB LED
3.6 Alarm
3.7 Temperature Alarm
3.8 Detecting vibration
3.9 Ambient Light controlled LED
3.10 Moving a Servo
3.11 Interact with Servo
3.12 RGB Light Dimmer
3.13 Motor Fan
3.14 Infrared controlled Light
3.15 Infrared controlled LED Matrix
4 FAQ
Introduction
Welcome to the electronic interaction world! DFRobot proudly presents the Arduino beginner kit for
those who are interested in learning about Arduino. Starting from basic LED control to more
advanced IR remote control, this kit will guide you through the world of microcontrollers and physical
computing.
A DFRduino UNO R3 (Compatible with Arduino Uno), the most stable and commonly used Arduino
processor, together with DFRobot's best selling prototype shield are included in this kit.
Getting Started with Arduino
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 Mac OS X
Environment: Description of the Arduino development environment and how to change the default
language.
Libraries: Using and installing Arduino libraries.
Tutorial
Blinking a LED
/*
# Description:
# Turns on an LED on for one second, then off for one second, repeatedly.
*/
int ledPin = 10;
void setup() {
pinMode(ledPin, OUTPUT);
}
void loop() {
digitalWrite(ledPin,HIGH);
delay(1000);
digitalWrite(ledPin,LOW);
delay(1000);
}
SOS Beacon
The connection diagram is the same with Blinknig a LED tutorial.
/*
# Description:
# Send SOS Beacon by led
*/
int ledPin = 10;
void setup() {
pinMode(ledPin, OUTPUT);
}
void loop() {
// S(...) three dot
for(int x=0;x
很抱歉,暂时无法提供与“DFR0100”相匹配的价格&库存,您可以联系我们找货
免费人工找货