

The Gledopto GL-C-309WL is a versatile smart LED controller designed to manage RGB and white LED lights. It supports both Wi-Fi and Zigbee protocols, making it compatible with a wide range of smart home ecosystems, including Amazon Alexa, Google Assistant, and Zigbee hubs like Philips Hue. This controller allows users to remotely control lighting, adjust brightness, and change colors, enabling seamless automation and customization of lighting environments.








| Parameter | Specification |
|---|---|
| Model Number | GL-C-309WL |
| Input Voltage | DC 12V-24V |
| Output Current | Max 6A per channel (RGBW) |
| Total Output Power | 144W (12V) / 288W (24V) |
| Communication Protocol | Wi-Fi (2.4 GHz) / Zigbee |
| Supported LED Types | RGB, RGBW |
| Control Methods | Mobile App, Voice Assistants, Zigbee |
| Dimensions | 85mm x 45mm x 22mm |
| Operating Temperature | -20°C to 60°C |
The GL-C-309WL has a set of input and output terminals for power and LED connections. Below is the pin configuration:
| Pin Name | Description |
|---|---|
| V+ | Positive DC input (12V-24V) |
| V- | Negative DC input (Ground) |
| Pin Name | Description |
|---|---|
| R | Red LED channel output |
| G | Green LED channel output |
| B | Blue LED channel output |
| W | White LED channel output |
| V+ | Common positive for LED connections |
If you are using the GL-C-309WL with an Arduino UNO and a Zigbee module (e.g., XBee), you can send Zigbee commands to control the lights. Below is an example code snippet:
#include <SoftwareSerial.h>
// Define RX and TX pins for Zigbee communication
SoftwareSerial zigbeeSerial(2, 3); // RX = pin 2, TX = pin 3
void setup() {
// Initialize serial communication
Serial.begin(9600);
zigbeeSerial.begin(9600);
// Send a sample Zigbee command to turn on the lights
// Replace "0x00" with the appropriate Zigbee address of the controller
byte command[] = {0x00, 0x11, 0x22, 0x33, 0x44};
// Example command to set RGBW values (adjust as needed)
zigbeeSerial.write(command, sizeof(command));
Serial.println("Zigbee command sent to GL-C-309WL.");
}
void loop() {
// Add your logic to send additional commands or process responses
}
Note: Replace the command array with the appropriate Zigbee command for your application. Consult the Zigbee hub or controller documentation for specific command formats.
LEDs Not Lighting Up:
Wi-Fi Connection Fails:
Zigbee Pairing Issues:
Overheating:
Can I use this controller with a 5 GHz Wi-Fi network? No, the GL-C-309WL only supports 2.4 GHz Wi-Fi networks.
What is the maximum length of LED strips I can connect? The maximum length depends on the power requirements of the LED strip. Ensure the total current does not exceed 6A per channel.
Can I control the lights without a Zigbee hub? Yes, you can use the Wi-Fi functionality and control the lights via the Gledopto app or a compatible smart home app.
How do I reset the controller? Power off and on the controller 5 times in quick succession to reset it and enter pairing mode.
This concludes the documentation for the Gledopto GL-C-309WL. For further assistance, refer to the manufacturer's user manual or contact Gledopto support.