Lancaster University's fork of the mbed BLE API. Lives on github, https://github.com/lancaster-university/BLE_API
Dependents: microbit-dal microbit-dal microbit-ble-open microbit-dal ... more
Fork of BLE_API by
Diff: ble/services/BatteryService.h
- Revision:
- 1042:21a86ac7f5b1
- Parent:
- 993:4d62b7967c11
- Child:
- 1048:efb29faf12fc
--- a/ble/services/BatteryService.h Thu Dec 10 09:15:05 2015 +0000 +++ b/ble/services/BatteryService.h Mon Jan 11 08:51:25 2016 +0000 @@ -21,18 +21,18 @@ /** * @class BatteryService -* @brief BLE Battery Service. This service displays the battery level from 0% to 100%, represented as an 8bit number. -* Service: https://developer.bluetooth.org/gatt/services/Pages/ServiceViewer.aspx?u=org.bluetooth.service.battery_service.xml +* @brief BLE Battery Service. This service displays the battery level from 0%->100% represented as a 8bit number.<br> +* Service: https://developer.bluetooth.org/gatt/services/Pages/ServiceViewer.aspx?u=org.bluetooth.service.battery_service.xml <br> * Battery Level Char: https://developer.bluetooth.org/gatt/characteristics/Pages/CharacteristicViewer.aspx?u=org.bluetooth.characteristic.battery_level.xml */ class BatteryService { public: /** - * @param[ref] _ble - * BLE object for the underlying controller. - * @param[in] level - * 8bit batterly level. Usually used to represent percentage of batterly charge remaining. - */ + * @param[ref] _ble + * BLE object for the underlying controller. + * @param[in] level + * 8bit batterly level. Usually used to represent percentage of batterly charge remaining. + */ BatteryService(BLE &_ble, uint8_t level = 100) : ble(_ble), batteryLevel(level), @@ -45,11 +45,11 @@ } /** - * @brief Update the battery level with a new value. [Valid values lie between 0 and 100]; - * anything outside this range will be ignored. + * @brief Update the battery level with a new value. Valid values range from + * 0..100. Anything outside this range will be ignored. * * @param newLevel - * Update to battery level. + * update to battery level. */ void updateBatteryLevel(uint8_t newLevel) { batteryLevel = newLevel;