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. /* Sender */
  2.  
  3. void setup() {
  4. Serial.begin(9600);
  5. Serial.println("Sender started!");
  6. }
  7.  
  8. void loop() {
  9. Serial.print(126);
  10. // Serial.print(0x10);
  11. // Serial.print(0xFF);
  12. delay(1000);
  13. }
Add Comment
Please, Sign In to add comment