1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
34
#pragma once
#include "esp_hidh.h"
#ifdef __cplusplus
extern "C" {
#endif
#if CONFIG_BT_HID_HOST_ENABLED
esp_err_t esp_bt_hidh_init(const esp_hidh_config_t *config);
esp_err_t esp_bt_hidh_deinit(void);
esp_hidh_dev_t *esp_bt_hidh_dev_open(esp_bd_addr_t bda);
/* ... */
#endif
#ifdef __cplusplus
}{...}
#endif