Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions BleKeyboard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,9 @@ void BleKeyboard::taskServer(void* pvParameter) {
BLEAdvertising *pAdvertising = pServer->getAdvertising();
pAdvertising->setAppearance(HID_KEYBOARD);
pAdvertising->addServiceUUID(bleKeyboardInstance->hid->hidService()->getUUID());

bleKeyboardInstance->onAdvertising(pAdvertising);

pAdvertising->start();
bleKeyboardInstance->hid->setBatteryLevel(bleKeyboardInstance->batteryLevel);

Expand Down
1 change: 1 addition & 0 deletions BleKeyboard.h
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ class BleKeyboard : public Print
std::string deviceName;
protected:
virtual void onStarted(BLEServer *pServer) { };
virtual void onAdvertising(BLEAdvertising *pAdvertising) { };
};

#endif // CONFIG_BT_ENABLED
Expand Down