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