

The COB LED Driver Board for Seeed Studio XIAO is a compact and efficient driver designed to power Chip-on-Board (COB) LEDs. It is specifically tailored to work seamlessly with the Seeed Studio XIAO microcontroller platform, enabling precise control and operation of high-brightness LED arrays. This driver board simplifies the integration of COB LEDs into projects, making it ideal for applications requiring high-intensity lighting with minimal power loss.








The COB LED Driver Board has the following pin configuration:
| Pin Name | Description |
|---|---|
| VIN | Input voltage (3.3V to 5V DC). Connect to the 3.3V or 5V pin of the XIAO. |
| GND | Ground connection. Connect to the GND pin of the XIAO. |
| PWM | PWM input signal for brightness control. Connect to a PWM-capable pin on XIAO. |
| LED+ | Positive terminal for the COB LED. |
| LED- | Negative terminal for the COB LED. |
Below is an example code snippet to control the brightness of a COB LED using the PWM pin of the Seeed Studio XIAO:
// Define the PWM pin connected to the COB LED Driver Board
const int pwmPin = 3; // Use a PWM-capable pin on the XIAO
void setup() {
// Set the PWM pin as an output
pinMode(pwmPin, OUTPUT);
}
void loop() {
// Gradually increase brightness
for (int brightness = 0; brightness <= 255; brightness++) {
analogWrite(pwmPin, brightness); // Write PWM signal to the driver board
delay(10); // Small delay for smooth transition
}
// Gradually decrease brightness
for (int brightness = 255; brightness >= 0; brightness--) {
analogWrite(pwmPin, brightness); // Write PWM signal to the driver board
delay(10); // Small delay for smooth transition
}
}
The COB LED does not light up:
The COB LED flickers:
The driver board overheats:
The brightness control is not smooth:
Q: Can I use this driver board with other microcontrollers?
A: Yes, the driver board can be used with any microcontroller that supports PWM output and operates at 3.3V or 5V logic levels.
Q: What type of COB LEDs are compatible with this driver board?
A: The driver board is compatible with COB LEDs requiring 9V to 12V DC and a maximum current of 500mA.
Q: Can I power multiple COB LEDs with this driver board?
A: No, the driver board is designed to power a single COB LED. For multiple LEDs, use additional driver boards or a higher-capacity driver.
Q: What is the recommended PWM frequency for brightness control?
A: A PWM frequency between 500Hz and 1kHz is recommended for optimal performance and minimal flicker.