// 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
void setup() {
//Serial.begin(115200);
//Serial.println("You won't see me!");
pinMode(13, OUTPUT);
}
void loop() {
digitalWrite(13, HIGH);
delay(200);
detachInterrupt(13,LOW);
delay(200);
}