//Wokwi Serial terminal simulation - Wokwi Arduino Simulator


void animazione()
{
  static uint8_t contatore =0;
  static uint32_t tempoPrecedente;
  if (millis() - tempoPrecedente >= 1000)
  {
    tempoPrecedente = millis();
    Serial.println(contatore++ % 8);
  }
}

void setup()
{
  Serial.begin(115200);
  Serial.println("Welcome to the Serial Monitor!");
  Serial.println("---------------------------------");
}

void loop()
{
  animazione();
}