/*
  Custom inverter chip example for Wokwi.
  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);
}