Arduino Simple Power Inverter Square Wave

0
Favorite
0
copy
Copy
63
Views
Arduino Simple Power Inverter Square Wave

Circuit Description

Graph image for Arduino Simple Power Inverter Square Wave

Circuit Graph

This inverter will work but I have better examples that drive the gates with a higher voltage which intern cause the Rds to be a lower value // 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

Creator

TEHRANGELES⚡

121 Circuits

Date Created

10 months, 2 weeks ago

Last Modified

8 months, 1 week ago

Tags

  • oscillator
  • inverter
  • arduino
  • power electronics
  • dc-to-ac
  • power inverter
  • arduino inverter
  • arduino project
  • sqaure wave inverter
  • arduino code

Circuit Copied From