haptic.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /* Copyright 2019 ishtob
  2. * Driver for haptic feedback written for QMK
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #pragma once
  18. #include <stdint.h>
  19. #include <stdbool.h>
  20. #include "quantum.h"
  21. #ifdef DRV2605L
  22. #include "DRV2605L.h"
  23. #endif
  24. #ifndef HAPTIC_FEEDBACK_DEFAULT
  25. #define HAPTIC_FEEDBACK_DEFAULT 0
  26. #endif
  27. #ifndef HAPTIC_MODE_DEFAULT
  28. #define HAPTIC_MODE_DEFAULT DRV_MODE_DEFAULT
  29. #endif
  30. /* EEPROM config settings */
  31. typedef union {
  32. uint32_t raw;
  33. struct {
  34. bool enable :1;
  35. uint8_t feedback :2;
  36. uint8_t mode :7;
  37. bool buzz :1;
  38. uint8_t dwell :7;
  39. uint16_t reserved :16;
  40. };
  41. } haptic_config_t;
  42. typedef enum HAPTIC_FEEDBACK{
  43. KEY_PRESS,
  44. KEY_PRESS_RELEASE,
  45. KEY_RELEASE,
  46. HAPTIC_FEEDBACK_MAX,
  47. } HAPTIC_FEEDBACK;
  48. bool process_haptic(uint16_t keycode, keyrecord_t *record);
  49. void haptic_init(void);
  50. void haptic_task(void);
  51. void eeconfig_debug_haptic(void);
  52. void haptic_enable(void);
  53. void haptic_disable(void);
  54. void haptic_toggle(void);
  55. void haptic_feedback_toggle(void);
  56. void haptic_mode_increase(void);
  57. void haptic_mode_decrease(void);
  58. void haptic_mode(uint8_t mode);
  59. void haptic_reset(void);
  60. void haptic_set_feedback(uint8_t feedback);
  61. void haptic_set_mode(uint8_t mode);
  62. void haptic_set_dwell(uint8_t dwell);
  63. void haptic_set_buzz(uint8_t buzz);
  64. void haptic_buzz_toggle(void);
  65. uint8_t haptic_get_mode(void);
  66. uint8_t haptic_get_feedback(void);
  67. void haptic_dwell_increase(void);
  68. void haptic_dwell_decrease(void);
  69. void haptic_play(void);
  70. void haptic_shutdown(void);