adafruit_ble.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /* Bluetooth Low Energy Protocol for QMK.
  2. * Author: Wez Furlong, 2016
  3. * Supports the Adafruit BLE board built around the nRF51822 chip.
  4. */
  5. #pragma once
  6. #ifdef ADAFRUIT_BLE_ENABLE
  7. #include <stdbool.h>
  8. #include <stdint.h>
  9. #include <string.h>
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. /* Instruct the module to enable HID keyboard support and reset */
  14. extern bool adafruit_ble_enable_keyboard(void);
  15. /* Query to see if the BLE module is connected */
  16. extern bool adafruit_ble_query_is_connected(void);
  17. /* Returns true if we believe that the BLE module is connected.
  18. * This uses our cached understanding that is maintained by
  19. * calling ble_task() periodically. */
  20. extern bool adafruit_ble_is_connected(void);
  21. /* Call this periodically to process BLE-originated things */
  22. extern void adafruit_ble_task(void);
  23. /* Generates keypress events for a set of keys.
  24. * The hid modifier mask specifies the state of the modifier keys for
  25. * this set of keys.
  26. * Also sends a key release indicator, so that the keys do not remain
  27. * held down. */
  28. extern bool adafruit_ble_send_keys(uint8_t hid_modifier_mask, uint8_t *keys,
  29. uint8_t nkeys);
  30. /* Send a consumer keycode, holding it down for the specified duration
  31. * (milliseconds) */
  32. extern bool adafruit_ble_send_consumer_key(uint16_t keycode, int hold_duration);
  33. #ifdef MOUSE_ENABLE
  34. /* Send a mouse/wheel movement report.
  35. * The parameters are signed and indicate positive of negative direction
  36. * change. */
  37. extern bool adafruit_ble_send_mouse_move(int8_t x, int8_t y, int8_t scroll,
  38. int8_t pan);
  39. #endif
  40. /* Compute battery voltage by reading an analog pin.
  41. * Returns the integer number of millivolts */
  42. extern uint32_t adafruit_ble_read_battery_voltage(void);
  43. extern bool adafruit_ble_set_mode_leds(bool on);
  44. extern bool adafruit_ble_set_power_level(int8_t level);
  45. #ifdef __cplusplus
  46. }
  47. #endif
  48. #endif // ADAFRUIT_BLE_ENABLE