12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #ifndef ZEPHYR_INCLUDE_BLUETOOTH_SERVICES_BAS_H_
- #define ZEPHYR_INCLUDE_BLUETOOTH_SERVICES_BAS_H_
- #include <zephyr/types.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- uint8_t bt_bas_get_battery_level(void);
- int bt_bas_set_battery_level(uint8_t level);
- #ifdef __cplusplus
- }
- #endif
- #endif
|