Postingan

Menampilkan postingan dari November, 2018

How to convert a square modified wave inverter to pure sine wave

Gambar
In this project i conver a modified sine wave of an inverter to pure wave using microcontroller (Arduino) and low pass filter(LPF). Watch this video here . Parts list: Arduino Inductor 900mH(2pcs) Capacitor 2 to 3uF 400V Capacitor 0.8uF(800nF) 400V Capacitor 1000uF 16V Transformer 220v to 6v Potentiometer 100K Resistor 750R   Video: Code: void setup() {   pinMode(3, OUTPUT);   pinMode(4, OUTPUT); } void loop(){   {   digitalWrite(3, HIGH);   digitalWrite(4, HIGH);   }   delayMicroseconds(1500);     {   digitalWrite(3, HIGH);   digitalWrite(4, LOW);   }   delayMicroseconds(75);   {   digitalWrite(3, HIGH);   digitalWrite(4, HIGH);   }   delayMicroseconds(50);   {   digitalWrite(3, HIGH);   digitalWrite(4, LOW);   }   delayMicroseconds(150);   {   digitalWrite(3, HIGH);   digitalWrite(4, HIGH);   }   delayMicroseconds(125);   {   digitalWrite(3, HIGH);   digitalWrite(4, LOW);   }   delayMicroseconds(200);   {   digitalWrite(3, HIGH);   digitalWrite(4, HIGH);   }   delayMicroseconds(150)