// 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 n=0x30;
void setup() {
Serial.begin(9600);
}
void loop() {
Serial.print(n);
n=n+1;
delay(1000);
}