Arduino Mains Power Inverter Square Wave

0
Favorite
0
copy
Copy
49
Views
Arduino Mains Power Inverter Square Wave

Circuit Description

Graph image for Arduino Mains Power Inverter Square Wave

Circuit Graph

New updated Arduino Power Inverter The clock voltage and inverter are done in code, see below. The BJT's let us drive the mosfet gates close to 12v with the 1k pull-up resistors and 100k pull-down resistors creating a voltage divider. The pull-down resistors on the mosfet gates are there to avoid latch up. The flyback Diodes are there to avoid inductive spikes (back emf) from the transformer windings. //code int gate1, gate2; gate1 = 6; gate2 = 7; void setup() { pinMode(gate1,OUTPUT); pinMode(gate2,OUTPUT); } void loop() { digitalWrite(gate1,HIGH); digitalWrite(gate2,LOW); delay(8); digitalWrite(gate1,LOW); digitalWrite(gate2,HIGH); delay(8); }

There are currently no comments

Profile image for Arduino Circuits ♾
Arduino Circuits ♾
1 Members
Profile image for Mains Electricity Circuits 🌎
Mains Electricity Circuits 🌎
2 Members
Profile image for Power Inverter Circuits 💪🔀
Power Inverter Circuits 💪🔀
3 Members

Creator

TEHRANGELES⚡

121 Circuits

Date Created

8 months, 2 weeks ago

Last Modified

8 months, 1 week ago

Tags

  • 60hz
  • inverter
  • arduino
  • power electronics
  • power inverter
  • arduino project
  • arduino code
  • mains inverter