説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

ui.h 990B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * ui.h
  3. *
  4. * Copyright (c) 2024 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 __UI_H__
  19. #define __UI_H__
  20. #include <stdint.h>
  21. enum machine_modes {
  22. MODE_LOOPSTATION = 0,
  23. MODE_DRUMMACHINE,
  24. MODE_MIDI,
  25. MACHINE_NUM_MODES
  26. };
  27. void ui_init(void);
  28. void ui_encoder(int32_t val);
  29. void ui_run(void);
  30. void ui_midi_set(uint8_t channel, uint8_t note, uint8_t velocity);
  31. enum machine_modes ui_get_machinemode(void);
  32. #endif // __UI_H__