Guest User

Untitled

a guest
Sep 18th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #ifndef Switch_h
  2. #define Switch_h
  3.  
  4. class Switch
  5. {
  6. public:
  7. unsigned char pin;
  8. boolean set;
  9. Switch(unsigned char pin);
  10. boolean isSet();
  11. boolean changed();
  12. };
  13.  
  14. #endif
Add Comment
Please, Sign In to add comment