/*
Custom inverter chip from https://github.com/wokwi/inverter-chip example for Wokwi.
This Sim: https://wokwi.com/projects/442648522302093313
per https://discord.com/channels/787627282663211009/1418710551416275034/1418963779126825074
See https://wokwi.com/projects/327458636089524820 for a non-github example using editable files in tabs
Start the simulation. The green LED shows the output of the inverter.
For more information: https://docs.wokwi.com/chips-api/getting-started
*/
void setup() {
pinMode(2, OUTPUT);
}
void loop() {
digitalWrite(2, LOW);
delay(500);
digitalWrite(2, HIGH);
delay(500);
}