Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #include <DigiKeyboard.h>
  2.  
  3. void setup() {
  4. // put your setup code here, to run once:
  5. delay(5000);
  6. DigiKeyboard.print("TESTING TESTING");
  7. pinMode(1,OUTPUT);
  8. digitalWrite(1,HIGH);
  9. }
  10.  
  11. void loop() {
  12. // put your main code here, to run repeatedly:
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement