ref: 3b4b5a51639016a87ef7309475f2ca83807804cf
src/components/ble/BleClient.h
1 2 3 4 5 6 7 8 9 10 11 12
#pragma once #include <functional> namespace Pinetime { namespace Controllers { class BleClient { public: virtual void Discover(uint16_t connectionHandle, std::function<void(uint16_t)> lambda) = 0; }; } }