int input = 0;
void setup() {
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
Serial.println("Uno ready");
delay(200);
Serial.println("womp");
Serial.print("\033[2J"); // Clear screen command
Serial.print("\033[H"); // Move cursor to the top-left corner
Serial.println("Screen Cleared!");
}