

The AC Dimmer 4 Channels is an electronic device designed to control the brightness of lights by adjusting the voltage and current supplied to the light fixtures. This component allows for independent control of up to four separate channels, making it ideal for applications requiring multi-zone lighting control. It is commonly used in home automation, stage lighting, and industrial lighting systems.








The AC Dimmer 4 Channels is designed to work with a variety of AC loads, including incandescent bulbs, dimmable LED lights, and other resistive or inductive loads. Below are the key technical details:
| Parameter | Value |
|---|---|
| Input Voltage | 110V - 240V AC |
| Output Channels | 4 |
| Maximum Load per Channel | 2A (440W at 220V, 220W at 110V) |
| Total Maximum Load | 8A |
| Control Signal | PWM (Pulse Width Modulation) |
| Control Voltage | 3.3V - 5V (compatible with microcontrollers) |
| Isolation | Opto-isolated control inputs |
| Operating Temperature | -10°C to 50°C |
| Dimensions | Varies by manufacturer (e.g., 100mm x 80mm x 25mm) |
The AC Dimmer 4 Channels typically has the following pin configuration:
| Pin Name | Description |
|---|---|
| CH1 | PWM input for Channel 1 |
| CH2 | PWM input for Channel 2 |
| CH3 | PWM input for Channel 3 |
| CH4 | PWM input for Channel 4 |
| GND | Ground connection for control signals |
| VCC | Power supply for control circuit (3.3V - 5V) |
| Pin Name | Description |
|---|---|
| AC_L | Live wire input from AC mains |
| AC_N | Neutral wire input from AC mains |
| OUT1 | Output for Channel 1 |
| OUT2 | Output for Channel 2 |
| OUT3 | Output for Channel 3 |
| OUT4 | Output for Channel 4 |
Connect the AC Input:
AC_L and AC_N terminals of the dimmer module.Connect the Loads:
OUT1, OUT2, OUT3, OUT4) corresponding to the channels you wish to control.Connect the Control Signals:
CH1, CH2, CH3, CH4) of the dimmer module.GND of the microcontroller is connected to the GND of the dimmer module.Power the Control Circuit:
VCC pin of the dimmer module.Test the Setup:
Below is an example code snippet to control the AC Dimmer 4 Channels using an Arduino UNO:
// Example code to control AC Dimmer 4 Channels with Arduino UNO
// Ensure the PWM pins used are compatible with analogWrite() function
#define CH1_PIN 3 // PWM pin for Channel 1
#define CH2_PIN 5 // PWM pin for Channel 2
#define CH3_PIN 6 // PWM pin for Channel 3
#define CH4_PIN 9 // PWM pin for Channel 4
void setup() {
// Set PWM pins as output
pinMode(CH1_PIN, OUTPUT);
pinMode(CH2_PIN, OUTPUT);
pinMode(CH3_PIN, OUTPUT);
pinMode(CH4_PIN, OUTPUT);
}
void loop() {
// Example: Gradually increase brightness on all channels
for (int brightness = 0; brightness <= 255; brightness++) {
analogWrite(CH1_PIN, brightness); // Adjust brightness for Channel 1
analogWrite(CH2_PIN, brightness); // Adjust brightness for Channel 2
analogWrite(CH3_PIN, brightness); // Adjust brightness for Channel 3
analogWrite(CH4_PIN, brightness); // Adjust brightness for Channel 4
delay(10); // Small delay for smooth dimming
}
// Example: Gradually decrease brightness on all channels
for (int brightness = 255; brightness >= 0; brightness--) {
analogWrite(CH1_PIN, brightness);
analogWrite(CH2_PIN, brightness);
analogWrite(CH3_PIN, brightness);
analogWrite(CH4_PIN, brightness);
delay(10);
}
}
Lights Flicker or Do Not Dim Smoothly:
No Response from the Dimmer:
Overheating:
Microcontroller Not Controlling the Dimmer:
GND of the microcontroller is connected to the GND of the dimmer module.Q: Can I use this dimmer with non-dimmable LED lights?
A: No, the dimmer is designed for use with dimmable lights only. Non-dimmable lights may flicker or get damaged.
Q: What happens if I exceed the maximum load per channel?
A: Exceeding the load rating can cause overheating, damage to the dimmer module, or even fire hazards. Always stay within the specified limits.
Q: Can I control the dimmer with a Raspberry Pi?
A: Yes, the dimmer can be controlled with a Raspberry Pi, but you may need to use a library or additional circuitry to generate appropriate PWM signals.
Q: Is the dimmer module safe to use with high-power appliances?
A: The dimmer is designed for lighting control and may not be suitable for high-power appliances. Always check the load specifications before use.