Choose Shipping Method
Shipping Method Estimated Delivery Time Shipping Cost
Home > Lights & Lighting > Lighting Accessories > LED Encapsulation Series > LED Modules > 2pcs 3-12V Green LED Module Bo...
  • 0 Piece/Pieces $ 0
  • ship to United States To Be Negotiated $ /
  • Lead time / days
    After payment is complete, your order will ship within
  • Shipping time / days
    Estimated Delivery Time is the time between your package shipped out of carriers’ warehouses and final destination delivery. Estimated delivery time does not include supplier manufacturing lead time, holidays and weekends.
Totals $ /
  • 0 Piece/Pieces $ 0
  • ship to United States To Be Negotiated $ /
  • Lead time / days
    After payment is complete, your order will ship within
  • Shipping time / days
    Estimated Delivery Time is the time between your package shipped out of carriers’ warehouses and final destination delivery. Estimated delivery time does not include supplier manufacturing lead time, holidays and weekends.
Totals $ /
2pcs 3-12V Green LED Module Board for MCU Expansion Breadboard Zigbee CC2530 NRF24LE1 STM8 Xilinx Altera Lattice Actel FPGA CPLD
  • 2pcs 3-12V Green LED Module Board for MCU Expansion Breadboard Zigbee CC2530 NRF24LE1 STM8 Xilinx Altera Lattice Actel FPGA CPLD
  • 2pcs 3-12V Green LED Module Board for MCU Expansion Breadboard Zigbee CC2530 NRF24LE1 STM8 Xilinx Altera Lattice Actel FPGA CPLD
  • 2pcs 3-12V Green LED Module Board for MCU Expansion Breadboard Zigbee CC2530 NRF24LE1 STM8 Xilinx Altera Lattice Actel FPGA CPLD
  • 2pcs 3-12V Green LED Module Board for MCU Expansion Breadboard Zigbee CC2530 NRF24LE1 STM8 Xilinx Altera Lattice Actel FPGA CPLD
  • 2pcs 3-12V Green LED Module Board for MCU Expansion Breadboard Zigbee CC2530 NRF24LE1 STM8 Xilinx Altera Lattice Actel FPGA CPLD

2pcs 3-12V Green LED Module Board for MCU Expansion Breadboard Zigbee CC2530 NRF24LE1 STM8 Xilinx Altera Lattice Actel FPGA CPLD

  • $3.18
    5-9
    Pieces
  • $3.02
    10-19
    Pieces
  • $2.86
    20-49
    Pieces
  • $2.54
    ≥50
    Pieces
5 Piece/Pieces (Min. Order)
Quantity:

0 Piece,Product Price: US $ 0

  • Lead Time:/ days
  • Shipping time:/ days
  • Product Description
Overview
Product Attributes
Brand Name:
Eletechsup
Application:
Mcu Expansion Board
is_customized:
Yes
Model Number:
Tb278*2
Display color:
Green
Usage:
Indoor
Tube Chip Color:
Green
Display Function:
Marquees
Pixels:
6 Bits
Bits:
6
Brand Name:
eletechsup
Packaging & Delivery
Selling Units:
Piece/Pieces
Single package size:
40cm*30cm*20cm
Single gross weight:
1kg
Lead Time :
Quantity(Piece/Pieces) 1 ~ 1000>1000
Est. Time(days) 7To be negotiated

If you finish the payment today, your order will ship out within the delivery date.

Product Name:2pcs 3-12V Green LED Module Board for MCU Expansion Breadboard Zigbee CC2530 NRF24LE1 STM8 Xilinx Altera Lattice Actel FPGA CPLD



Packing list(Does not include UNO Board):

 
2 pcs 6 bits  Green   3V 3.3V 5V 9V 12V Common Cathode LED's Board

 

 

 

Description:
 
2.54MM PIN 6 Digital  Green  LED Board(Also others color LED board) Ideal for linking up to your MCU FPGA/CPLD Development Board (AVR STM8 STM32 ARM7 ARM9 ARM10 ARM11 PIC C8051 C51 NRF24LE1 CC2530 CC2540 Zigbee Arduiuo UNO MEGA2560 DUE Yún Leonardo Zero Tre Micro  STC MSP430 Xilinx Altera Lattice Actel Atmel etc .) 
   
   
1 6  Digital   Green   Common Cathode LEDs( High level lighted ).
 
2 7 PIN OUT 2.54mm
 
3 1K ohm  Limiting resistor
 
4 Power Supply Voltage: 3-12V;
   
5 Size: 17.78MM x 11.43MM.
 
 

 

PCB:

Circuit schematics :

Connection with Arduiuo(Only 6 bit LED's Board ,Does not include ARDUIUO UNO R3):

 
Arduiuo uno/mega2560 Code  1pcs
//******************************************************//
 
/*
  Arduiuo_6led
 
  This example code is in the public domain.
 */
 
// give it a name:
int D1 = 13;
int D2 = 12;
int D3 = 11;
int D4 = 10;
int D5 = 9;
int D6 = 8;
 
// the setup routine runs once when you press reset:
void setup() {                
  // initialize the digital pin as an output.
pinMode(D1, OUTPUT);   
pinMode(D2, OUTPUT); 
pinMode(D3, OUTPUT);  
pinMode(D4, OUTPUT);  
pinMode(D5, OUTPUT);  
pinMode(D6, OUTPUT);  
}
 
// the loop routine runs over and over again forever:
void loop() {
  
  digitalWrite(D1, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(200);               // wait for a 200 Millisecond
  digitalWrite(D1, LOW);    // turn the LED off by making the voltage LOW
  
  digitalWrite(D2, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(200);               // wait for a Millisecond
  digitalWrite(D2, LOW);    // turn the LED off by making the voltage LOW
  
  digitalWrite(D3, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(200);               // wait for a Millisecond
  digitalWrite(D3, LOW);    // turn the LED off by making the voltage LOW
 
  digitalWrite(D4, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(200);               // wait for a Millisecond
  digitalWrite(D4, LOW);    // turn the LED off by making the voltage LOW
  
  digitalWrite(D5, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(200);               // wait for a Millisecond
  digitalWrite(D5, LOW);    // turn the LED off by making the voltage LOW
  
  digitalWrite(D6, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(200);               // wait for a Millisecond
  digitalWrite(D6, LOW);    // turn the LED off by making the voltage LOW
  
}
 
//******************************************************// 
 
 
 
Arduiuo uno/mega2560 Code(   Insert two LED board)
 
//******************************************************//  
 
 
/*
  Arduiuo_6led
 
  This example code is in the public domain.
 */
 
// LED Board 1
int D1 = 13;
int D2 = 12;
int D3 = 11;
int D4 = 10;
int D5 = 9;
int D6 = 8;
 
// LED Board 2
int D11 = 1;
int D12 = 2;
int D13 = 3;
int D14 = 4;
int D15 = 5;
int D16 = 6;
int GND = 7;//Common Cathode
 
// the setup routine runs once when you press reset:
void setup() {                
  // initialize the digital pin as an output.
pinMode(D1, OUTPUT);   
pinMode(D2, OUTPUT); 
pinMode(D3, OUTPUT);  
pinMode(D4, OUTPUT);  
pinMode(D5, OUTPUT);  
pinMode(D6, OUTPUT);  
 
pinMode(D11, OUTPUT);   
pinMode(D12, OUTPUT); 
pinMode(D13, OUTPUT);  
pinMode(D14, OUTPUT);  
pinMode(D15, OUTPUT);  
pinMode(D16, OUTPUT);  
pinMode(GND, OUTPUT);  
 
digitalWrite(GND, LOW); 
}
 
// the loop routine runs over and over again forever:
void loop() {
  
  
 
  digitalWrite(D1, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(200);               // wait for a 200 Millisecond
  digitalWrite(D1, LOW);    // turn the LED off by making the voltage LOW
  
  digitalWrite(D2, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(200);               // wait for a Millisecond
  digitalWrite(D2, LOW);    // turn the LED off by making the voltage LOW
  
  digitalWrite(D3, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(200);               // wait for a Millisecond
  digitalWrite(D3, LOW);    // turn the LED off by making the voltage LOW
 
  digitalWrite(D4, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(200);               // wait for a Millisecond
  digitalWrite(D4, LOW);    // turn the LED off by making the voltage LOW
  
  digitalWrite(D5, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(200);               // wait for a Millisecond
  digitalWrite(D5, LOW);    // turn the LED off by making the voltage LOW
  
  digitalWrite(D6, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(200);               // wait for a Millisecond
  digitalWrite(D6, LOW);    // turn the LED off by making the voltage LOW
  
  digitalWrite(D16, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(200);               // wait for a Millisecond
  digitalWrite(D16, LOW);    // turn the LED off by making the voltage LOW
  
   digitalWrite(D15, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(200);               // wait for a Millisecond
  digitalWrite(D15, LOW);    // turn the LED off by making the voltage LOW
  
  digitalWrite(D14, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(200);               // wait for a Millisecond
  digitalWrite(D14, LOW);    // turn the LED off by making the voltage LOW
 
  digitalWrite(D13, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(200);               // wait for a Millisecond
  digitalWrite(D13, LOW);    // turn the LED off by making the voltage LOW
  
  
  digitalWrite(D12, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(200);               // wait for a Millisecond
  digitalWrite(D12, LOW);    // turn the LED off by making the voltage LOW
  
  digitalWrite(D11, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(200);               // wait for a 200 Millisecond
  digitalWrite(D11, LOW);    // turn the LED off by making the voltage LOW
  
}
 
 
//******************************************************// 
Wholesale 2pcs 3-12v Green Led Module Board For Mcu Expansion Breadboard Zigbee Cc2530 Nrf24le1 Stm8 Xilinx Altera Lattice Actel Fpga Cpld
Are you still worrying about not finding the 2pcs 3-12v green led module board for mcu expansion breadboard zigbee cc2530 nrf24le1 stm8 xilinx altera lattice actel fpga cpld? Come and find the 2pcs 3-12v green led module board for mcu expansion breadboard zigbee cc2530 nrf24le1 stm8 xilinx altera lattice actel fpga cpld you want on Bossgoomall. If you want to know more about the products in 2pcs 3-12v green led module board for mcu expansion breadboard zigbee cc2530 nrf24le1 stm8 xilinx altera lattice actel fpga cpld, Please click on the product details to view. we have the perfect after-sales service and technical support. Looking forward to your use of our products.
Home > Lights & Lighting > Lighting Accessories > LED Encapsulation Series > LED Modules > 2pcs 3-12V Green LED Module Bo...
Add To Cart Start Order
Sign in
Account
Password