Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: BLE_API mbed-dev nRF51822
HIDController_BLE.h
- Committer:
- cho45
- Date:
- 2016-08-27
- Revision:
- 44:916b70fd1c40
- Parent:
- 40:364deaa190fe
- Child:
- 48:d6938de02f62
File content as of revision 44:916b70fd1c40:
#ifndef __HIDController_H__ #define __HIDController_H__ enum Status_t { DISCONNECTED, CONNECTING, CONNECTED, TIMEOUT, ADVERTISING, }; class HIDController { public: static void init(); static void waitForEvent(); static bool connected(); static Status_t status(); static const char* statusString(); static void appendReportData(uint8_t key); static void deleteReportData(uint8_t key); static void queueCurrentReportData(); static void updateBatteryLevel(uint8_t percentage); static void initializeConnection(bool ignoreWhiteList); }; #endif