Site icon Circuit Ideas for You

Arduino Based 55W Halogen Light Controller Circuit

To begin with, this project controls a 55W halogen lamp using an Arduino, here, the Arduino provides a low-voltage signal, while the MOSFET handles the high voltage and high current.

Also, this circuit is useful for dimming, ON/OFF control and automation projects.

Arduino Code:

int lampPin = 9;

void setup() {
pinMode(lampPin, OUTPUT);
}

void loop() {
analogWrite(lampPin, 255); // lamp full ON
delay(2000);

analogWrite(lampPin, 120); // lamp dim
delay(2000);

analogWrite(lampPin, 0); // lamp OFF
delay(2000);
}

Circuit Working:

Arduino Based 55W Halogen Light Controller Circuit Diagram

Parts List:

ComponentsValuesQuantity
Resistor1k 1/4 watt1
Arduino BoardArduino Uno / Beetle1
MOSFETIRF3708 Logic Level / RFP30N06LE1
Halogen Lamp55W DC Halogen1
DC Power Supply12V for Arduino and +3V to +60V for Halogen lamp1
Heat SinkSuitable for MOSFET1

The above circuit can work with DC supply from about +3V to +60V; which is also a useful and easy to build project.

Then Arduino sends HIGH or PWM signal to MOSFET gate and when gate gets HIGH and MOSFET turns ON, current flows through lamp and lamp glows.

PWM controls the lamp brightness, and the MOSFET acts as an electronic switch, finally, the Arduino remains safe because it only drives the MOSFET gate.

Important Notes:

How to Build:

To build a Arduino Based 55W Halogen Light Controller Circuit follow the below steps for connection:

Conclusion:

To conclude, Arduino Based 55W Halogen Light Controller Circuit is simple and reliable, as Arduino controls high power lamp safely.

In addition, MOSFET protects Arduino from high current and also this circuit is good for lighting control and automation projects.

References:

Datasheet IRF3708

Exit mobile version