Skip to main content

TOUCH SWITCH CIRCUIT WITH MOSFET


TOUCH SWITCH CIRCUIT WITH MOSFET


1,326
13


About: Electronic Hobby Store 

Intro: Touch Switch Circuit With MOSFET

Created by: Jonsen Li
Overview:
The simple touch switch LED circuit utilizes biasing characteristics of the MOSFET.
MOSFET stands for Metal-oxide-semiconductor field effect transistors. It is a voltage controlled device meaning that the current passing through the device is controlled by the voltage between two terminals.
Parts you will need:
A power MOSFET (IRFZ-44 NPN) (Lee's ID: 71211)
9V battery (Lee's ID: 83741)
12V LED bulb (Lee's ID: 5504)
Jumper wires (Lee's ID: 21802)
Breadboard (Lee's ID: 10686)
9V battery clip (Lee's ID: 653)

Step 1: A Quick Tip to Keep in Mind

Since the mosfet is a voltage controlled device, it is very sensitive to electrostatic discharges and may be damaged due to the static charges flowing through the terminals.

Step 2: Hooking Up Wires to the MOSFET

Picture of Hooking Up Wires to the MOSFET
Simply connect the jumper terminals to the legs of the MOSFET
For IRFZ-44:
The left leg is the gate terminal (white jumper)
The middle is the drain terminal (brown jumper)
The right leg is the source terminal (grey jumper)

Step 3: Fully Assembled Circuit

Picture of Fully Assembled Circuit
Picture of Fully Assembled Circuit
To turn the LED on, simply touch the drain terminal and gate terminal at the SAME time.
To turn the LED off, touch the source terminal and gate terminal at the SAME time
The logic behind this project is the characteristics of the MOSFET:
For the LED to light up, the MOSFET must fully ON, which means Vds > Vgs – Vt. Since MOSFETs are voltage-controlled transistors, touching the drain and gate terminal at the same time will “short” them, therefore allowing the MOSFET to be fully ON.
On the other hand, touching the gate and source terminal will turn the MOSFET fully OFF, because it cannot satisfy the overdrive voltage (Vov) requirement (Vov = Vgs – Vt, Vgs = 0V).
If you have difficulties turning the circuit on and off, wetting your hands may help.

Step 4: A Video Demonstration


Here is a quick video demonstration of the touch switch in action.Here is a quick video demonstration of the touch switch in action.

Comments

Popular posts from this blog

DIGITAL UV-METER, WITH OLED DISPLAY. ARDUINO PROJECT FOR BEGINNERS

DIGITAL UV-METER, WITH OLED DISPLAY. ARDUINO PROJECT FOR BEGINNERS By   techn0man1ac   in   Technology Arduino 4,792 87 13 Featured Download Favorite By   techn0man1ac Techn0man1ac blog Follow About: Techn0man1ac - техноманьяк   More About techn0man1ac » Intro: Digital UV-meter, With OLED Display. Arduino Project for Beginners Video demonstration (English subtitles). Hello,   instructable . Today I will tell you how to make a simple digital VU meter (sound level meter) using Arduino and OLED displays and 2 resistors by yourself (DIY). The device is quite simple, for beginners it will be a rewarding experience. Add Tip Ask Question Comment Download Step 1: Components for This Arduino Project: 3 More Images Arduino Nano V3.0; 0.96 inch IIC I2C 128X64 OLED Display; One 10K, resistor(R1 no scheme); One 10K-100K potentiometer(R2no scheme); Wires. Add Tip Ask Question C...

Alcohol Sensor

POWER77 Tech Electronic Project    Alcohol Level Meter using Arduino & MQ-135 Alcohol/Gas Sensor   Introduction In this project we have designed Alcohol Level Meter using Arduino & MQ-135 Alcohol/Gas Sensor for measuring the level of alcohol in human breathe. Simply we have interfaced MQ-135 Gas Sensor module with Arduino and 16*2 LCD module for display. The alcohol/Gas sensor we used is the MQ-135 sensor. This is a sensor that is not only sensitive to alcohol, particularly ethanol, which is the type of alcohol which is found in wine, beer, and liquor. Instead of MQ-135, you can use MQ2, MQ3, MQ5 module as well. Basically they all have similar functions. This type of sensor circuit can be used as a breathalyzer to check a person’s blood alcohol level. Just as we exhale carbon dioxide when we breathe out, we also will breathe out some alcohol if we have alcohol in our blood. Any alcometer device can measure this alcohol content. The mo...

ARDUINO ULTRASONIC SENSOR TUTORIAL WITH CODE

ULTRASONIC SENSOR TUTORIAL This is Arduino based tutorial for ultrasonic sensor. in this video, I described how to connect ultrasonic sensor with Arduino also interface LCD with this. Component required for tutorial (1) Arduino microcontroller (2) Ultrasonic sensor (3) LCD ciruit diagram is given in video. Arduino Code for tutorial: Ultrasonic sensor tutorial by IGENTECH #include<LiquidCrystal.h> // include header file of lcd LiquidCrystal lcd(12, 11, 5, 4, 3, 2); //assign pins of lcd const int trigPin = 8; // assign trig pin to 8 const int echoPin = 7; // assign echo pin to 7 // defines variables long duration; int distance; void setup() {   lcd.begin(16,2); // begin lcd   lcd.print("UltrasonicSensor"); // print ultrasonic sensor on lcd   lcd.setCursor(0,2);            // set cursor to second row of lcd   lcd.print("   IGENTECH      ")...