Advertisement
Guest User

Untitled

a guest
Jan 17th, 2012
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.16 KB | None | 0 0
  1. void setup() {  
  2.   Serial.begin(9600);
  3. }
  4.  
  5. void loop() {  
  6.   if (Serial.available()) {
  7.     int inByte = Serial.read();
  8.     Serial.write(inByte);
  9.   }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement