OpenSmart

3W 200 Lumen LED Module

Item No.: ST1179

3W LED Module High Power Module For Arduino. A high brightness LED in an easy to use modular package .Includes a PWM input for brightness control.

Feature:

  • Operating Voltage:5V DC
  • Power Consumption:3W
  • Light Output :200 Lumens
  • Colour Temperature: 6000K
  • Dimensions:30*23*6mm




1. Instructions

   This is a 3W 200 Lumen LED module that controlled by Arduino board via PWM pin.

Specification:

  •    Color Temperature: Warm White 3000-3200K / white 6000-6500K
  •    Forward Current: 700MA
  •   Luminous flux: White 180-200LM (lumens)
  •   Forward Voltage :3.3-3 .6 V
  •   Reverse voltage: 5V
  •   Power: 3W
  •   Viewing angle: 180 degrees
  •   Working temperature: -20-60 degrees
  •   Storage temperature :20-60 degrees
  •   Brightness attenuation: 3% after 5000 hours
  •    Life: 50,000 hours

2. Pin Instruction


3.Example

Here is a example for this module, we control the brightness via Pin9,which output a PWM signal.

The connection as below:

                   “G”=======Gnd

                   “+”=======5V

                   “S”=======9


int brightness = 0;    
int fadeAmount = 5;    
void setup()  { 
 
  pinMode(9, OUTPUT);
} 
 
void loop()  { 
 
  analogWrite(9, brightness);
  brightness = brightness + fadeAmount;
  if (brightness == 0 || brightness == 255) {
    fadeAmount = -fadeAmount ; 
  }     
 
  delay(30);                       
}

Comment