DC-DC Buck Converter Circuit – How to Step Down DC Voltage

In this project we are going to make a Buck Converter Circuit using Arduino and N-Channel MOSFET with a maximum current capacity of 6 amps. We are going to step down 12v DC to any value between 0 and 10v DC. We can control the output voltage value by rotating the potentiometer.

A buck converter is a DC to DC converter, which steps down DC voltage. It is just like a transformer with one difference; whereas transformer steps down AC voltage buck converter steps down DC voltage. Efficiency of buck converter is lower than a transformer.

DC-DC Buck Converter Circuit - How to Step Down DC Voltage

Key components of buck converter are mosfet; either n-channel or p-channel and high frequency Square Pulse Generator (either a timer IC or microcontroller). Arduino is used here as Pulse Generator, a 555 Timer IC can also be used for this purpose. Here we have demonstrated this Buck converter by controlling DC-Motor speed with Potentiometer, also tested the voltage using Multimeter. Check the Video at the end of this article.

Required Components:

  1. Arduino Uno
  2. IRF540N
  3. Inductor(100Uh)
  4. Capacitor (100uf)
  5. Schottky Diode
  6. Potentiometer
  7. 10k, 100ohm Resistor
  8. Load
  9. 12v Battery

Circuit Diagram and Connections:

Make connections as shown in circuit diagram above for DC-DC Buck Converter.

  1. Connect one terminal of inductor to source of mosfet, and another to LED in series with 1k resistor. Load is connected in parallel to this arrangement.
  2. Connect 10k resistor between gate and source.
  3. Connect capacitor in parallel to load.
  4. Connect positive terminal of battery to drain and negative to capacitor’s negative terminal.
  5. Connect p terminal of diode to negative of battery and n terminal directly to source.
  6. PWM pin of Arduino goes to gate of mosfet
  7. GND pin of Arduino goes to source of mosfet. Do connect it there or circuit will not work.
  8. Connect potentiometer’s extreme terminals to 5v pin and GND pin of Arduino respectively. Whereas wiper terminal to analog pin A1.

Function of Arduino:

As already explained, Arduino sends clock pulses to base of MOSFET. Frequency of these clock pulses is approx. 65 Khz. This causes very fast switching of mosfet and we obtain an average voltage value. You should learn about ADC and PWM in Arduino, which will clear you how high frequency pulses are generated by Arduino:

DC-DC Buck Converter Circuit - How to Step Down DC Voltage schematic

Function of MOSFET:

Mosfet is used for two purposes:

  1. For high speed switching of the output voltage.
  2. To provide high current with less dissipation of heat.

Function of inductor:
Inductor is used to control voltage spikes which can damage mosfet. Inductor stores energy when mosfet is on and releases this stored energy when mosfet is off. Since frequency is very high, value of inductance required for this purpose is very low (around 100uH).

Function of Schottky Diode:
Schottky diode completes the loop of current when mosfet is switched off and thus ensuring smooth supply of current to load. Apart from this, schottky diode dissipates very low heat and work fine at higher frequency than regular diodes.

Function of LED:
Brightness of LED indicates the step down voltage across load. As we rotate the Potentiometer, brightness of LED varies.

Function of potentiometer:

When wiper terminal of potentiometer is thrown off to different position, voltage between it and ground changes which in turn changes the analog value received by pin A1 of arduino. This new value is then mapped between 0 and 255 and then given to pin 6 of Arduino for PWM.

** Capacitor smooths out voltage given to load.

Why resistor between gate and source?

Even slightest noise at gate of MOSFET can turn it on, hence to prevent this from happening it is always advised to connect high value resistor between gate and source.

Code Explanation:

Complete Arduino code, for generating high frequency pulses, is given in the code section below.

Code is simple and self-explanatory, so here we have explained only few parts of code.

Variable x is assigned the analog value that is received from analog pin A0 of Arduino

x= analogRead(A1) ;

Variable w is assigned the mapped value which is between 0 and 255. Here the ADC values of Arduino are mapped to 2 to 255 using map function in Arduino.

w= map(x,0,1023,0,255) ;

Normal frequency of PWM for pin 6 is approx.1khz. This frequency is not suitable for purposes like buck converter. Hence this frequency must be increased to a very high level. This can be achieved using a one line code in void setup:

TCCR0B = TCCR0B & B11111000 | B00000001;// change frequency of pwm to 65 KHZ approx.

Working of DC-DC Buck Converter:

When circuit is switched on, mosfet switches on and off with a frequency of 65 khz. This causes inductor to store energy when mosfet is on and then give this stored energy to load when mosfet switches off. Since this happens at very high frequency, we get an average value of pulsed output voltage depending on the position of wiper terminal of potentiometer with respect to 5v terminal. And as this voltage between wiper terminal and ground increases so does the mapped value on pwm pin no. 6 of Arduino.

Read more: DC-DC Buck Converter Circuit – How to Step Down DC Voltage


About The Author

Ibrar Ayyub

I am an experienced technical writer with a Master's degree in computer science from BZU Multan University. I have written for various industries, mainly home automation and engineering. My writing style is clear and simple, and I am skilled in using infographics and diagrams. I am a great researcher and am able to present information in a well-organized and logical manner.

Follow Us:
LinkedinTwitter
Scroll to Top