/* Custom inverter chip example for Wokwi.
How to use?
1. Press "F1" and "Create a custom C chip (alpha)"
2. Copy the contents of "inverter-chip.txt" to "wokwi-custom-chip.c.temp"
3. Start the simulation. The green LED shows the output of the inverter.
*/
void setup() {
pinMode(2, OUTPUT);
}
void loop() {
digitalWrite(2, LOW);
delay(500);
digitalWrite(2, HIGH);
delay(500);
}