summaryrefslogtreecommitdiff
path: root/src/Components/Ble/BleController.cpp
blob: c2458087a89dbb5191de5febcc51948a42e767a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "BleController.h"

using namespace Pinetime::Controllers;

void Ble::Connect() {
  isConnected = true;
}

void Ble::Disconnect() {
  isConnected = false;
}