diff options
| author | JF <jf@codingfield.com> | 2019-12-27 16:05:49 (GMT) |
|---|---|---|
| committer | JF <jf@codingfield.com> | 2019-12-27 16:05:49 (GMT) |
| commit | 46eeefb53a1843908c3e7dbae56dbaa0a6d83bdd (patch) | |
| tree | 2ce3c2e9c819cd84b42b3c6035890b1cdb7dd45e /src/Components/Ble/BleController.cpp | |
| parent | 11aa5e3d880af978dc5c337357c3802355c799eb (diff) | |
Add BleController to manage the BLE connection status
Diffstat (limited to 'src/Components/Ble/BleController.cpp')
| -rw-r--r-- | src/Components/Ble/BleController.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Components/Ble/BleController.cpp b/src/Components/Ble/BleController.cpp new file mode 100644 index 0000000..c245808 --- /dev/null +++ b/src/Components/Ble/BleController.cpp @@ -0,0 +1,11 @@ +#include "BleController.h" + +using namespace Pinetime::Controllers; + +void Ble::Connect() { + isConnected = true; +} + +void Ble::Disconnect() { + isConnected = false; +} |
