Advertisement
halfordC

LibraryLessonPart1

Aug 20th, 2018
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. #include <Morse.h>
  2.  
  3. Morse morse(13);
  4.  
  5. void setup()
  6. {
  7.  
  8. }
  9.  
  10. void loop()
  11. {
  12.   morse.dot(); morse.dot(); morse.dot();
  13.   morse.dash(); morse.dash(); morse.dash();
  14.   morse.dot(); morse.dot(); morse.dot();
  15.   delay(3000);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement