S&B Volcano vaporizer remote control with Pi Pico W
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * buttons.h
  3. *
  4. * Copyright (c) 2022 - 2023 Thomas Buck (thomas@xythobuz.de)
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * See <http://www.gnu.org/licenses/>.
  17. */
  18. #ifndef __BUTTONS_H__
  19. #define __BUTTONS_H__
  20. enum buttons {
  21. BTN_A,
  22. BTN_B,
  23. BTN_X,
  24. BTN_Y,
  25. BTN_UP,
  26. BTN_DOWN,
  27. BTN_LEFT,
  28. BTN_RIGHT,
  29. BTN_ENTER,
  30. NUM_BTNS // count
  31. };
  32. void buttons_init(void);
  33. void buttons_run(void);
  34. #endif // __BUTTONS_H__