// This project discards the Serial output from the sketch;
// instead, it connects the serial monitor to a physical serial port on your computer.
//
// Only works on Chrome
//int i = 0;
void setup() {
Serial.begin(115200);
Serial.println("You won't see me!");
}
void loop() {
static int i = 0;
Serial.println("Send Test :" + String(i));
i += 1;
delay(1000);
}