Merge branch 'iriark01-patch-2' into develop

This commit is contained in:
Rohit Grover 2015-11-25 08:46:53 +00:00
commit b52214726b
1 changed files with 5 additions and 5 deletions

View File

@ -21,8 +21,8 @@
/** /**
* @class BatteryService * @class BatteryService
* @brief BLE Battery Service. This service displays the battery level from 0%->100% represented as a 8bit number.<br> * @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 <br> * Service: https://developer.bluetooth.org/gatt/services/Pages/ServiceViewer.aspx?u=org.bluetooth.service.battery_service.xml
* Battery Level Char: https://developer.bluetooth.org/gatt/characteristics/Pages/CharacteristicViewer.aspx?u=org.bluetooth.characteristic.battery_level.xml * Battery Level Char: https://developer.bluetooth.org/gatt/characteristics/Pages/CharacteristicViewer.aspx?u=org.bluetooth.characteristic.battery_level.xml
*/ */
class BatteryService { class BatteryService {
@ -45,11 +45,11 @@ public:
} }
/** /**
* @brief Update the battery level with a new value. Valid values range from * @brief Update the battery level with a new value. [Valid values lie between 0 and 100];
* 0..100. Anything outside this range will be ignored. * anything outside this range will be ignored.
* *
* @param newLevel * @param newLevel
* update to battery level. * Update to battery level.
*/ */
void updateBatteryLevel(uint8_t newLevel) { void updateBatteryLevel(uint8_t newLevel) {
batteryLevel = newLevel; batteryLevel = newLevel;