Advertisement
Marrin

switching.h

Jan 14th, 2016
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.35 KB | None | 0 0
  1. #ifndef HAVE_SWITCHING
  2. #define HAVE_SWITCHING
  3.  
  4. typedef void (*CommandFunction)(uint16_t i, uint16_t j);
  5.  
  6. void turn_on(uint16_t i, uint16_t j);
  7. void turn_off(uint16_t i, uint16_t j);
  8. void toggle(uint16_t i, uint16_t j);
  9. void turn_up(uint16_t i, uint16_t j);
  10. void turn_down(uint16_t i, uint16_t j);
  11. void turn_double_up(uint16_t i, uint16_t j);
  12.  
  13. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement