Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //filename: Morse.h
- #ifndef Morse_h
- #define Morse_h
- #include "Arduino.h"
- class Morse
- {
- public:
- Morse(int pin);
- void dot();
- void dash();
- private:
- int _pin;
- }
- #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement