Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //filename: Morse_halford88.h
- // This is a demonstration of a custom library for Arduino use.
- // August 20, 2018
- #ifndef Morse_halford88_h
- #define Morse_halford88_h
- #include "Arduino.h"
- class Morse_halford88 {
- public:
- Morse_halford88(int pin);
- void setUpValues(); // <----- this is a new method that I made; the cpp file has the explanation.
- void dot();
- void dash();
- private:
- int _pin;
- }; // <------ the ending semicolon was missing here
- #endif
Advertisement
Add Comment
Please, Sign In to add comment