Guest User

Untitled

a guest
Dec 15th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1.  
  2. void setup() {
  3. Serial.begin(9600);
  4. Serial.println("Receiver started!");
  5. }
  6.  
  7. void loop() {
  8. if(Serial.available() > 0) {
  9. Serial.println("--");
  10. Serial.println(Serial.read());
  11. }
  12. }
Add Comment
Please, Sign In to add comment