Muhammad_Munir
Published © GPL3+

How to make Inverter at Home

How to Make Inverter which convert 12volt DC to 220volt AC

BeginnerFull instructions provided1,049
How to make Inverter at Home

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
12 + 12 volt Transformer
×1
80nf70 Mosfit
×1
10k Resistors
×2
100k Resistor
×2
3.7 volt Batteries
×3
12 volt Battery Holder
×1
Jumper Wires
×1

Story

Read more

Code

Code

Arduino
int out1 = 8;
int out2 = 7;
void setup()
{
pinMode(out1,OUTPUT);
pinMode(out2,OUTPUT);
}
void loop()
{
digitalWrite(out2,LOW);
digitalWrite(out1,HIGH);
delay(20);
digitalWrite(out1,LOW);
digitalWrite(out2,HIGH);
delay(20);
}

Credits

Muhammad_Munir
79 projects • 52 followers
I am Arduino programmer, also expertise in ESP32 and 8266 wifi modules.
Contact

Comments

Please log in or sign up to comment.