bt.h 209 B

12345678910111213141516
  1. #pragma once
  2. #include <stdint.h>
  3. #include <stdbool.h>
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. typedef struct Bt Bt;
  8. bool bt_update_battery_level(Bt* bt, uint8_t battery_level);
  9. #ifdef __cplusplus
  10. }
  11. #endif