adafruit_ble.h 2.0 KB

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