mirror of
https://github.com/lemmingDev/ESP32-BLE-Gamepad.git
synced 2026-03-03 14:54:09 +01:00
15 lines
269 B
C++
15 lines
269 B
C++
#include "BleConnectionStatus.h"
|
|
|
|
BleConnectionStatus::BleConnectionStatus(void) {
|
|
}
|
|
|
|
void BleConnectionStatus::onConnect(NimBLEServer* pServer)
|
|
{
|
|
this->connected = true;
|
|
}
|
|
|
|
void BleConnectionStatus::onDisconnect(NimBLEServer* pServer)
|
|
{
|
|
this->connected = false;
|
|
}
|