adafruit_ble.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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, uint8_t nkeys);
  31. /* Send a consumer keycode, holding it down for the specified duration
  32. * (milliseconds) */
  33. extern bool adafruit_ble_send_consumer_key(uint16_t keycode, int hold_duration);
  34. # ifdef MOUSE_ENABLE
  35. /* Send a mouse/wheel movement report.
  36. * The parameters are signed and indicate positive of negative direction
  37. * change. */
  38. extern bool adafruit_ble_send_mouse_move(int8_t x, int8_t y, int8_t scroll, int8_t pan, uint8_t buttons);
  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 // MODULE_ADAFRUIT_BLE