The SW-301U-E3 is a versatile LED controller designed to manage the brightness, color, and operation of LED lights. This component is widely used in various lighting systems, including residential, commercial, and industrial applications. It provides precise control over LED lighting, making it ideal for creating dynamic lighting effects, energy-efficient lighting solutions, and customized lighting environments.
Parameter | Value |
---|---|
Manufacturer | SW-301U-E3 |
Part ID | SW-301U-E3 |
Input Voltage | 5V - 24V DC |
Output Current | Up to 5A per channel |
Number of Channels | 3 (RGB) |
Control Interface | PWM, DMX512, RF, IR |
Operating Temperature | -20°C to 60°C |
Dimensions | 85mm x 45mm x 23mm |
Pin Number | Pin Name | Description |
---|---|---|
1 | VCC | Power supply input (5V - 24V DC) |
2 | GND | Ground |
3 | CH1 | Channel 1 output (Red) |
4 | CH2 | Channel 2 output (Green) |
5 | CH3 | Channel 3 output (Blue) |
6 | PWM | PWM control signal input |
7 | DMX+ | DMX512 control signal positive |
8 | DMX- | DMX512 control signal negative |
9 | RF | RF control signal input |
10 | IR | IR control signal input |
Power Supply Connection:
LED Connection:
Control Signal Connection:
Below is an example code to control the SW-301U-E3 using an Arduino UNO with PWM signals.
// Define PWM pins for Red, Green, and Blue channels
const int redPin = 9;
const int greenPin = 10;
const int bluePin = 11;
void setup() {
// Set the PWM pins as output
pinMode(redPin, OUTPUT);
pinMode(greenPin, OUTPUT);
pinMode(bluePin, OUTPUT);
}
void loop() {
// Example: Fade Red LED in and out
for (int brightness = 0; brightness <= 255; brightness++) {
analogWrite(redPin, brightness); // Increase brightness
delay(10); // Wait for 10 milliseconds
}
for (int brightness = 255; brightness >= 0; brightness--) {
analogWrite(redPin, brightness); // Decrease brightness
delay(10); // Wait for 10 milliseconds
}
}
LEDs Not Lighting Up:
Flickering LEDs:
Overheating:
By following this documentation, users can effectively utilize the SW-301U-E3 LED controller in their lighting projects, ensuring optimal performance and reliability.