

The QuinLED Dig Next 2 (Manufacturer Part ID: Dig-Next-2) is a versatile LED controller designed for addressable RGB LED strips. Manufactured by QuinLED, this component offers advanced features for controlling LED lighting, making it ideal for both hobbyists and professional lighting installations. It supports multiple control modes, integrates seamlessly with various smart home systems, and provides robust performance for a wide range of applications.








| Parameter | Specification |
|---|---|
| Input Voltage Range | 5V to 24V DC |
| Maximum Current Output | 15A (dependent on power supply) |
| Supported LED Protocols | WS2812, WS2813, SK6812, APA102, etc. |
| Control Interfaces | Wi-Fi (ESP32-based), GPIO |
| Number of LED Channels | 2 independent channels |
| Operating Temperature | -20°C to 60°C |
| Dimensions | 50mm x 50mm x 15mm |
The QuinLED Dig Next 2 features a straightforward pin layout for easy integration into your projects. Below is the pin configuration:
| Pin Name | Description |
|---|---|
| VIN | Power input (5V to 24V DC) |
| GND | Ground connection |
| DATA1 | Data output for Channel 1 (connect to the data line of the first LED strip) |
| DATA2 | Data output for Channel 2 (optional second LED strip) |
| GPIO Pins | General-purpose input/output pins for custom configurations |
| Reset Button | Resets the controller |
| Wi-Fi Antenna | Built-in antenna for wireless communication |
Although the QuinLED Dig Next 2 is primarily ESP32-based, you can control addressable LEDs with an Arduino UNO for testing purposes. Below is an example using the FastLED library:
#include <FastLED.h>
// Define the number of LEDs and the data pin
#define NUM_LEDS 60
#define DATA_PIN 6
// Create an array to hold the LED data
CRGB leds[NUM_LEDS];
void setup() {
// Initialize the LED strip
FastLED.addLeds<WS2812, DATA_PIN, GRB>(leds, NUM_LEDS);
FastLED.clear(); // Clear all LEDs
FastLED.show(); // Update the LEDs
}
void loop() {
// Example: Set all LEDs to red
for (int i = 0; i < NUM_LEDS; i++) {
leds[i] = CRGB::Red; // Set each LED to red
}
FastLED.show(); // Update the LEDs with the new color
delay(1000); // Wait for 1 second
// Example: Turn off all LEDs
FastLED.clear(); // Clear all LEDs
FastLED.show(); // Update the LEDs
delay(1000); // Wait for 1 second
}
LEDs Not Lighting Up:
Flickering LEDs:
Wi-Fi Connection Issues:
Overheating:
Q: Can I use the QuinLED Dig Next 2 with non-addressable LED strips?
A: No, the QuinLED Dig Next 2 is specifically designed for addressable LED strips that use protocols like WS2812, SK6812, and APA102.
Q: How many LEDs can I control with this controller?
A: The maximum number of LEDs depends on the power supply and the memory of the ESP32. Typically, you can control up to 1000 LEDs per channel.
Q: Is the controller compatible with 12V LED strips?
A: Yes, the controller supports LED strips with voltages between 5V and 24V. Ensure the power supply matches the LED strip voltage.
Q: Can I use this controller outdoors?
A: The QuinLED Dig Next 2 is not waterproof. If using outdoors, enclose it in a weatherproof housing.