You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.8 KiB

  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. #include <stdbool.h>
  7. #include <stdint.h>
  8. #include <string.h>
  9. #include "config_common.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 void adafruit_ble_send_keys(uint8_t hid_modifier_mask, uint8_t *keys, uint8_t nkeys);
  29. /* Send a consumer usage.
  30. * (milliseconds) */
  31. extern void adafruit_ble_send_consumer_key(uint16_t usage);
  32. #ifdef MOUSE_ENABLE
  33. /* Send a mouse/wheel movement report.
  34. * The parameters are signed and indicate positive or negative direction
  35. * change. */
  36. extern void adafruit_ble_send_mouse_move(int8_t x, int8_t y, int8_t scroll, int8_t pan, uint8_t buttons);
  37. #endif
  38. /* Compute battery voltage by reading an analog pin.
  39. * Returns the integer number of millivolts */
  40. extern uint32_t adafruit_ble_read_battery_voltage(void);
  41. extern bool adafruit_ble_set_mode_leds(bool on);
  42. extern bool adafruit_ble_set_power_level(int8_t level);
  43. #ifdef __cplusplus
  44. }
  45. #endif