Site icon Circuit Ideas for You

Arduino Based 55W Halogen Light Controller Circuit

This circuit is used to control a Arduino Based 55W Halogen Light Controller Circuit.

Arduino gives low voltage signal and MOSFET handles high voltage and high current.

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

Arduino Coding:

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);
}

Code Explanation:

Circuit Working:

Arduino Based 55W Halogen Light Controller Circuit Diagram

Parts List:

Component NameValue Quantity
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.

Arduino sends HIGH or PWM signal to MOSFET gate.

When gate gets HIGH and MOSFET turns ON.

Current flows through lamp and lamp glows.

Using PWM the lamp brightness can be controlled.

MOSFET works like electronic switch.

Arduino is 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:

Arduino Based 55W Halogen Light Controller Circuit is simple and reliable.

Arduino controls high power lamp safely.

MOSFET protects Arduino from high current.

This circuit is good for lighting control and automation projects.

References:

Datasheet IRF3708

Exit mobile version