| 5 | #include "ble_config/ble_config_earable.h" |
| 6 | |
| 7 | class Button_Service { |
| 8 | public: |
| 9 | void begin(); |
| 10 | void write_state(int state); |
| 11 | private: |
| 12 | BLEService * buttonService{}; |
| 13 | BLEUnsignedCharCharacteristic * buttonStateC{}; |
| 14 | }; |
| 15 | |
| 16 | extern Button_Service button_service; |
| 17 |
nothing calls this directly
no outgoing calls
no test coverage detected