ble.h
1 #pragma once 2 namespace networking::ble { 3 4 void initialize(void); 5 void service(void); 6 bool isConnected(void); 7 int clientCount(void); 8 9 #ifdef PIO_UNIT_TESTING 10 void test(void); 11 #endif 12 13 } // namespace networking::ble 14