4 Channel AC Light Dimmer Module Arduino

preview_player
Показать описание

Module contains four Triacs with zero-cross detector
for programming the intensity of incandescent lamps, heating elements or fan speed controlled through a micro-controller.

Working voltage from 110v to 240v.
Auto detect 50Hz or 60Hz.
Zero-Cross detection (with zero/cross output pin SYNC).
Compatible with any ARDUINO, RASPBERRY boards.

Low voltage side and high voltage side is completely isolated.

Dimensions of the PCB 110mm x 50mm (4.33inch x 1.97inch). Four mounting holes diameter 3.2mm (0.13inch).

Connected LOAD power for each channel 1500W long-term and 3500W short-term.

NOT appropriate to change the brightness of fluorescent lamps !!!

Рекомендации по теме
Комментарии
Автор

is it possible to have the dimness controlled remotely by having wifi module?

natsutekine
Автор

Thanks video. However, I was being misunderstood by the title, that's mean wrong title.
whether can you control level light (dimmer) bulb1 and bulb 2 and bulb3 and bulb4 seperate, not automatic?

duochoa
Автор

Hello Sir Really Super Project, Sorry but one doubt. this project properly work or not? please reply me sir

pandiannano
Автор

Can I connect two bulbs to the same channel?

adnestrada
Автор

from where i can buy this module?
I want to buy this module and I will be using it with Arduino MEGA. I want to change the Load with time. Maximum Load will be 500 W Heater so around 5 Amps 220V 50 Hz.
Can I use it as variable resistor to control the load of 500W? Please reply me which module i should buy because on your website you have alot of options.

SaeedAhmed-ixnm
Автор

Thankq Sir,
Please send more example to Arduino sketches or youtube videos.

pandiannano
Автор

don't work in my Arduino uno R3, others code work Fine but this code all time the lamp is off. Need some Help.


*
* Demo Arduino code for 4CH AC DIMMER MODULE
*
* AC LINE FREQUENCY - 60HZ !
*
* Variables for dimming - buf_CH1, buf_CH2, buf_CH3, buf_CH4 !
*
* Variables have range 0-255. 0 - Fully ON, 255 - Fully OFF.
*
* KRIDA Electronics, 4 SEP 2016



#include <TimerOne.h>

#define channel_1 4
#define channel_2 5
#define channel_3 6
#define channel_4 7

#define SPEED 20

#define GATE_IMPULSE 5

#define FREQ 84

unsigned int CH1, CH2, CH3, CH4;
unsigned int buf_CH1, buf_CH2, buf_CH3, buf_CH4;
unsigned char clock_cn;
unsigned int clock_tick;
unsigned char i;

void setup() {

pinMode(channel_1, OUTPUT);
pinMode(channel_2, OUTPUT);
pinMode(channel_3, OUTPUT);
pinMode(channel_4, OUTPUT);
attachInterrupt(1, zero_crosss_int, RISING);
Timer1.initialize(10);
Timer1.attachInterrupt( timerIsr );

}

void timerIsr()
{
clock_tick++;

if (clock_cn)
{
clock_cn++;

if (clock_cn==GATE_IMPULSE)
{
digitalWrite(channel_1, LOW);
digitalWrite(channel_2, LOW);
digitalWrite(channel_3, LOW);
digitalWrite(channel_4, LOW);
clock_cn=0;
}
}

if (CH1==clock_tick)
{
digitalWrite(channel_1, HIGH);
clock_cn=1;
}

if (CH2==clock_tick)
{
digitalWrite(channel_2, HIGH);
clock_cn=1;
}

if (CH3==clock_tick)
{
digitalWrite(channel_3, HIGH);
clock_cn=1;
}

if (CH4==clock_tick)
{
digitalWrite(channel_4, HIGH);
clock_cn=1;
}


}



void zero_crosss_int()
{
CH1=buf_CH1;
CH2=buf_CH2;
CH3=buf_CH3;
CH4=buf_CH4;

clock_tick=0;
}

unsigned int DIMM_VALUE (unsigned char level)
{
unsigned int buf_level;

if (level < 26) {level=26;}
if (level > 229) {level=229;}

return ((level*(FREQ))/256)*10;
}



void loop() {

for (i=255;i>1;i--) {buf_CH1=DIMM_VALUE(i); delay(SPEED);}
for (i=255;i>1;i--) {buf_CH2=DIMM_VALUE(i); delay(SPEED);}
for (i=255;i>1;i--) {buf_CH3=DIMM_VALUE(i); delay(SPEED);}
for (i=255;i>1;i--) {buf_CH4=DIMM_VALUE(i); delay(SPEED);}

for (i=0;i<255;i++) {buf_CH1=DIMM_VALUE(i); delay(SPEED);}
for (i=0;i<255;i++) {buf_CH2=DIMM_VALUE(i); delay(SPEED);}
for (i=0;i<255;i++) {buf_CH3=DIMM_VALUE(i); delay(SPEED);}
for (i=0;i<255;i++) {buf_CH4=DIMM_VALUE(i); delay(SPEED);}

}

Neomight
Автор

Hi,

This project fully worked. Available 1ch, 2ch, 4ch and 8ch dimming modules for sale. Arduino testing sketches available also for free.

For more info, see here

- KRIDA

kridaelectronics
visit shbcf.ru