void setup() {
  // put your setup code here, to run once:
  Serial.begin(115200);
  Serial.println("Hello, ESP32-C3!");
  pinMode(0, OUTPUT);
  digitalWrite(0, HIGH);
}

void loop() {
  // put your main code here, to run repeatedly:
  digitalWrite(0, LOW);
  delay(500); // this speeds up the simulation
  digitalWrite(0, HIGH);
  delay(500);
}