16 lines
361 B
C++
16 lines
361 B
C++
#pragma once
|
|
|
|
#include "../BLEAPI.hpp"
|
|
|
|
namespace cs::midi_ble_btstack {
|
|
|
|
bool init(MIDIBLEInstance &instance, BLESettings settings);
|
|
void notify(BLEConnectionHandle conn_handle,
|
|
BLECharacteristicHandle char_handle, BLEDataView data);
|
|
|
|
#ifdef CS_MIDI_HID_KEYBOARD
|
|
void set_battery_level(uint8_t percent);
|
|
#endif
|
|
|
|
} // namespace cs::midi_ble_btstack
|