Advertisement
halfordC

LibraryLessonPart3

Aug 20th, 2018
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | None | 0 0
  1. //filename: Morse.h
  2.  
  3. #ifndef Morse_h
  4. #define Morse_h
  5.  
  6. #include "Arduino.h"
  7.  
  8. class Morse
  9. {
  10.   public:
  11.   Morse(int pin);
  12.   void dot();
  13.   void dash();
  14.   private:
  15.   int _pin;
  16.  
  17.   }
  18.  
  19. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement