The shipping fee depends on your address
Standard: 9-15 business days,fee is down to $3.99
Express: 4-7 business days,fee is down to $5.99
WE'RE READY TO BUILD A CUSTOM PRODUCT FOR YOU.
If you're looking for a custom product, we can help. Kindly contact us via email support@keszoox.com and send us the details for your need, then we'll let you know how we can deliver the right solution.We make into production usually Within 1 - 3 Bussiness Days.
Expect customization orders.8 Common Cathode LEDs with series resistors.
This module makes it easy to work with LEDs in a project.
The first thing everyone does when starting to work with microcontrollers is to hook up an LED with a current limiting resistor and make it blink. Great fun! at least the first time. Fast forward awhile and when you have a need to wire up some LEDs for a project, dragging out the LEDs, finding enough that match, finding the correct value resistors and hooking it all up starts to seem more like work than fun… or perhaps thats just me.
These modules make adding 1 to 8 LEDs to a project very easy and tidy. More than 8 LEDs can be added by simply adding more modules.
The modules have 2K current limiting resistors which keep current requirements low when using with standard 3.3V or 5V logic so any microcontroller can drive them and also helps keep the LED brightness at a comfortable level. It also allows the LEDs to be used in higher voltage applications of up to 24V.
A logic HIGH on the D1-D9 pins turns the corrosponding LED on. A logic LOW turns it off.
There is a 9-pin header on the assembly for connections. The COM pin is the common pin and connects to the Cathode of all the LEDs. D1-D8 connect to the anodes of each LED.
1 x 9 Header
These modules really are quite handy to quickly add some indicator LEDs to a project.
If you are working with an Arduino like an UNO or Mega2560 and don’t need more than 6 LEDs, you can clip the D7, D8 pins off the module and insert the module directly into the female header on the Arduino with the COM pin going into the GND connection and the LED pins going into D8-D13 with no wiring or breadboard necessary to mount the module on.
The program below simply scans the LEDs up and down. The module COM pin is connected to ground and the LED pins D1-D8 are connected to pins D2-D9 on the microcontroller. These can be changed to any convenient pins if desired.
/* Scan 8 LEDs back and forth Simply scans the LEDs in sequence in one direction and then in the reverse direction and repeats forever. Change DELAY_TIME to change speed Connect COM pin to ground Connect D1-D8 pins on module to D2-D9 on microcontroller Change DELAY_TIME to change the speed */ const int DELAY_TIME = 75; // Change to change speed //=============================================================================== // Initialization //=============================================================================== void setup() { // initialize digital pins 2-9 as outputs. Can change to any 8 digital pins pinMode(2, OUTPUT); pinMode(3, OUTPUT); pinMode(4, OUTPUT); pinMode(5, OUTPUT); pinMode(6, OUTPUT); pinMode(7, OUTPUT); pinMode(8, OUTPUT); pinMode(9, OUTPUT); } //=============================================================================== // Main //=============================================================================== void loop() { for(int i = 2; i <= 9; i++){ // Ramp the LEDs up digitalWrite(i, HIGH); // Turn the LED ON delay(DELAY_TIME); // Wait for a bit digitalWrite(i, LOW); // Turn the LED OFF } for(int i = 9; i >= 2; i--){ // Ramp the LEDs down digitalWrite(i, HIGH); // Turn the LED ON delay(DELAY_TIME); // Wait for a bit digitalWrite(i, LOW); // Turn the LED OFF } }
Notes:
Maximum Ratings | ||
Vcc | 24V (3.3 – 5V typical) | |
IMax | Maximum Current Draw per LED | < 10mA |
Operating Ratings | ||
LED Configuration | Common Cathode | |
LED Current | 3.3V | 0.75mA (typ) |
5V | 1.55mA (typ) | |
Dimensions | L x W (PCB) | 23 x 15mm (0.90 x 0.60″) |
WE'RE READY TO BUILD A CUSTOM PRODUCT FOR YOU.
All orders are dispatched from our warehouse. The shipments are fully tracked—from our door to yours. Please allow 3-5 business days for your order to be processed in addition to the shipping times below.
Standard: 9-15 business days. Express: 4-7 business days.
Please note that shipping providers are extremely busy during this time, and some orders might experience a delay on top of usual delivery times. If your order is late, please allow 5-10 days more than indicated in standard shipping times before contacting our customer service. Thank you for your understanding.
All orders are 100% tracked. You’ll receive an email with a tracking number and a link to track your parcel once your order leaves our warehouse. Please allow 24-48 hours for the tracking link to start showing shipping information.
Receive our latest updates about our products & promotions.
Thanks for subscribing!
This email has been registered!