Skip to content

Instantly share code, notes, and snippets.

@voodootikigod
Created June 1, 2011 04:28
Show Gist options
  • Save voodootikigod/1001784 to your computer and use it in GitHub Desktop.
Save voodootikigod/1001784 to your computer and use it in GitHub Desktop.
#define SERIAL_BAUDRATE 9600
void setup(){
Serial.begin(SERIAL_BAUDRATE);
};
int inByte = 0;
void loop(){
Serial.print(inByte);
Serial.print('\r');
inByte++;
delay(500);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment