// Forum: https://forum.arduino.cc/t/questions-about-wokwi/1194411/15
// This Wokwi project: https://wokwi.com/projects/385410237990141953
// The 'Docs' about the Serial Monitor:
// https://docs.wokwi.com/guides/serial-monitor
//
// Example of how to use the settings for the Serial Monitor
// in the "diagram.json" file.
int count = 0;
int delta = +1;
void setup()
{
Serial.begin(115200);
Serial.println("Hello");
}
void loop()
{
count += delta;
Serial.println(count);
if(count == 50 or count == -50)
delta = -delta;
delay(10);
}