Skip to content

Bright_LED_Module_SKU__DFR0438

Angelo edited this page Sep 22, 2016 · 5 revisions

Bright LED Module SKU: DFR0438

Introduction

The Bright LED module is designed for some special application. It's using a very bright LED component as its light source. Compatible with DFRobot gravity 3-Pin interface, plug and play. What you need is just a digital signal, you can drive it directly. Besides, the LED is so bright that do not look directly at the light.

Specification

  • Operating Voltage: 5VDC
  • Opearting Current: 20mA (Max)
  • Dimension: 30*22(mm)/1.18*0.86 (in)

Board Overview

450px

Tutorial

Requirements

Connection Diagram

600px

Sample Code

void setup() {
  // initialize digital pin 13 as an output.
   pinMode(13, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
  digitalWrite(13, HIGH);    // turn the LED on (HIGH is the voltage level)
   delay(1000);              // wait for a second
  digitalWrite(13, LOW);    // turn the LED off by making the voltage LOW
  delay(1000);              // wait for a second
}

Result

This simple sample code will turn on and off this LED module every one second. And the brightness is depend on the voltage it gets from Arduino. (Maximum is 5V.)

FAQ

'''Q1. '''Some general Arduino Problems/ FAQ/ Tips, very good to know.

'''A. '''Click the topic link on DFRobot Forum.

center For any question/advice/cool idea to share, please visit DFRobot Forum.

More Documents

link=http://www.dfrobot.com/ shopping from dfrobot store or dfrobot distributor.

Clone this wiki locally