Skip to content

Instantly share code, notes, and snippets.

@voodootikigod
Created June 27, 2011 21:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save voodootikigod/1049846 to your computer and use it in GitHub Desktop.
Save voodootikigod/1049846 to your computer and use it in GitHub Desktop.
void setup(){
Serial.begin(9600);
};
int inByte = 0;
void loop(){
Serial.print(inByte++);
Serial.print('\r');
delay(500);
};
@mbilokonsky
Copy link

mykola-bilokonskys-iMac:NewTest mykola$ node test.js
new data
here: 0
mykola-bilokonskys-iMac:NewTest mykola$ node test.js
mykola-bilokonskys-iMac:NewTest mykola$ node test.js
new data
here: 0
mykola-bilokonskys-iMac:NewTest mykola$

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment