Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

How to build an isolated digital AC dimmer using Arduino

Status
Not open for further replies.

Hesambook

Full Member level 2
Joined
Sep 26, 2007
Messages
123
Helped
1
Reputation
4
Reaction score
9
Trophy points
1,298
Activity points
3,078
Disclaimer: This circuit is connected directly to the mains voltage. You must care about all safety precautions before using the device.

AC loads are everywhere around us because at least home appliances are supplied with the mains power. Therefore, we always face the situations that we want to have full control (dimming) over an AC load such as a lamp, a motor, vacuum cleaner … etc.

We should know that controlling an AC load is not identical with a DC load. So we should use different electronic circuits for this purpose.

The figure-1 shows the mains sinusoidal wave with the frequency of 50Hz (sometimes 60Hz). To build a dimmer, the zero crossing points (the points where the wave changes its polarity) are important. To grab these points, we have to use a zero crossing detector. The figure-2 demonstrates the schematic diagram of the whole circuit.

Fig1-How-to-build-an-isolated-digital-AC-dimmer-using-Arduino.jpg
Figure-1, Mains sine wave (Green arrows show the zero crossing points)

Fig2-How-to-build-an-isolated-digital-AC-dimmer-using-Arduino.jpg
Figure-2, Schematic diagram of the digital AC dimmer​

R1, R2, IC1 [1], D1, and C3 build the zero crossing detector circuit. It is designed to make proper isolation (optically) with the mains voltage. So we can expect to get a noise-free signal which can be safely connected to the Arduino I/Os. The figure-3 demonstrates the zero-crossing detector output signal (Pin-4 of the IC1). According to the TLP521-1 datasheet: “The TOSHIBA TLP521-1, -2 and -4 consist of a phototransistor optically coupled to a gallium arsenide infrared emitting diode.” For sure you can use similar optocouplers as well, but I use this part for other designs as well and it does the job quite well.

Fig3-How-to-build-an-isolated-digital-AC-dimmer-using-Arduino.jpg
Figure-3, The output signal of the zero crossing detector circuit​

So as it is clear, we gonna use the zero crossing pulse as a trigger for the main controlling circuit. Exactly after a trigger (a zero cross), in a simple term, we have to decide how much power we want to deliver. It is easier to understand by demonstrating the Arduino code and output wave later.

IC3 is a BT138 [2] Triac. The load is in series with the Triac and the AC line, so the Triac determine the amount of power that should be delivered to the load. According to the BT138 datasheet: “Planar passivated four quadrant Triac in a SOT78 (TO-220AB) plastic package intended for use in applications requiring high bidirectional transient and blocking voltage capability and high thermal cycling performance. Typical applications include motor control, industrial and domestic lighting, heating and static switching.”

Attention: the mounting base of the BT138 Triac (by default it is used to attach a heatsink) is connected to the Pin-2. It means you should never touch the heatsink or screw it to a metal enclosure!

R4, R5, and C2 implement a snubber circuit [3] for the IC2 and C1 and R7 make a snubber circuit [3] for IC3. These parts help the device to be compatible with a variety of loads, such as inductive loads.

IC2 is an Opto-Triac component which makes proper galvanic isolation between the digital side and the AC line. The selected part number is MOC3021 [4]. You can use similar part numbers also, but be careful not to use the parts with embedded zero crossing detector. Those parts are useful for switching the AC loads (ON/OFF), not for dimming.

I did not have the footprint and schematic symbols of the IC1, IC2, and IC3. So instead of designing the libraries from scratch and wasting the time, I used the free SamacSys Altium Designer plugin to install the libraries directly in the document [5] [6] [7]. The figure-4 shows the selected parts in the plugin’s UI.

Fig4-How-to-build-an-isolated-digital-AC-dimmer-using-Arduino.jpg
Figure-4, The selected schematic symbol and footprint libraries for IC1, IC2, and IC3​

The figure-5 shows the designed PCB layout. The AC lines which are supposed to carry a high amount of current have drawn thicker and double sided. In addition, both track sides have reinforced by some Vias to reduce the resistance and increase the current transmission capability of the PCB track.


Fig5-How-to-build-an-isolated-digital-AC-dimmer-using-Arduino.jpg
Figure-5, The PCB layout of the AC dimmer​

All components are Dip. Therefore it is easy for everyone to solder the components quickly and use the circuit as a module. R2, R4, R5, and R7 are 1W resistors. R1 are R6 are 1/4W. C1 and C2 can be selected from MKT or Polyester type capacitors, but make sure that they are at least 400V rated. The 250V rated capacitors seem to be okay, but 250V is a bit close to the input voltage boundaries. Therefore 400V is a wise selection for the capacitors’ voltages. C1 has a 10mm pitch size. This number is 10.5mm for the C2. K1 is an MKDSN connector with 5.08mm pitch size (MKDSN-2.5/4-5.08). P1 is a traditional 4 pins male header connector.

The PCB board has a cutout under the IC1 and IC2. It provides better galvanic isolation between two sections of the circuit board.

The figure-6 demonstrates the first prototype of the circuit board. The provided PCB layout and Gerber file in this article are the final versions [8].

The mounted heatsink is just for a short test. For an actual long term use, you must use a bigger heatsink. The location of IC3 (near the PCB border) makes the heatsink installation task much easier.

Fig6-How-to-build-an-isolated-digital-AC-dimmer-using-Arduino.jpg
Figure-6, The first prototype of the circuit​

Now it's the time to connect the circuit to an Arduino board and control the AC load. I selected an Arduino Nano which introduces enough resources for this project, but you can use other boards as well. A sample Arduino code for the AC dimmer is as follows:

Code:
const byte ZCP = 2;
const unsigned int dim = 5000;

void setup() {

  pinMode(ZCP, INPUT);
  pinMode(10, OUTPUT);
  digitalWrite(10, LOW);
 
}

void loop() {

  if (digitalRead(ZCP) == HIGH)
    Zero_Cross();

}

void Zero_Cross() {

  digitalWrite(10, LOW);
  delayMicroseconds(dim);
  digitalWrite(10, HIGH);
  
}

It is not necessary to write complex code to test our dimmer. There are two methods to sniff the zero crossing detector pulses: polling and interrupt. In the first attempt, I fixed this using an interrupt, but I faced the load flickering in some situations. The flickering is an annoying situation which happens with some dimmers. The reason is the wrong timing. As I mentioned earlier, the zero crossing points are quite important and any random time-shift will cause instability. Using an interrupt was introducing some jitter, and this jitter caused flickering in some dimmer settings. Therefore I switched the method to polling (lines 8 to 11).

All we have to do is to change the Triac off-time in both cycles, so the “dim” variable defines the transferred power to the load. As a starting point, I set the dimmer to the middle. That means for a duration of 5mS, the Triac is kept OFF. So let’s confirm our theory in practice by examining the load waveform.

Be careful: never connect your oscilloscope probe directly to the mains. The probe’s ground connection can build a closed loop with the mains terminal and blow up everything in the path, including your circuit, probe or oscilloscope or even yourself!

There are several solutions to overcome this, such as using an isolator or using a differential probe … etc. I used an ordinary transformer (220V to 12V) and verified the output just by using this. Please check the figure-7 for the connections. I have to note that the load must be connected, otherwise you won’t see the true waveform.

Fig7-How-to-build-an-isolated-digital-AC-dimmer-using-Arduino.jpg
Figure-7, Probing the load and required connections​

The figure-8 shows the output waveform (50%). You can expand the code and add two buttons to increase and decrease the output power. You can develop the code and modify it with your own Arduino board and your specific needs.


Fig8-How-to-build-an-isolated-digital-AC-dimmer-using-Arduino.jpg
Figure-8, The output waveform in 50% of the power (dim = 5000)​

References

[1]: TLP521-1 datasheet, https://www.futurlec.com/Datasheet/LED/TLP521.pdf

[2]: BT138 datasheet: http://www.farnell.com/datasheets/1758083.pdf

[3]: RC snubber circuit design for TRIACs, AN437, STMicroelectronics

[4]: MOC3021 datasheet, https://www.farnell.com/datasheets/97984.pdf

[5]: Schematic symbol and Footprint of TLP521-1: https://componentsearchengine.com/part.php?partID=233976

[6]: Schematic symbol and Footprint of BT138: https://componentsearchengine.com/part.php?partID=423633

[7]: Schematic symbol and Footprint of MOC3021: https://componentsearchengine.com/part.php?partID=979395

[8]: NC-Drill and Gerber files: How to build an isolated digital AC dimmer using Arduino, Blog section, Technology, PCB.Way
 

I used this Arduino board

device20_1000_1.jpg
 

The schematic looks good, everything else is a matter of software.
 

The schematic looks good, everything else is a matter of software.

Yes, timing is very important.
Anyone can change the software a bit and add two buttons to increase and decrease the power easily.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top