// 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
// Constants
const int ledPin = 13; // Pin where the LED is connected
void setup() {
Serial.begin(115200);
pinMode(ledPin, OUTPUT);
Serial.println("You won't see me!");
}
void loop() {
// Turn the LED on
digitalWrite(ledPin, HIGH);
// Wait for one second
delay(1000);
// Turn the LED off
digitalWrite(ledPin, LOW);
// Wait for one second
delay(1000);
}