Select one of the symbols to view example projects that use it.
 
Outline
#include "esp_hidh.h"
esp_ble_hidh_init(const esp_hidh_config_t *);
esp_ble_hidh_deinit();
esp_ble_hidh_dev_open(uint8_t *, esp_ble_addr_type_t);
Files
loading (3/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_hid/private/ble_hidh.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2017-2023 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #pragma once #include "esp_hidh.h" #ifdef __cplusplus extern "C" { #endif #if CONFIG_GATTC_ENABLE || CONFIG_BT_NIMBLE_ENABLED esp_err_t esp_ble_hidh_init(const esp_hidh_config_t *config); esp_err_t esp_ble_hidh_deinit(void); #if CONFIG_BT_NIMBLE_ENABLED esp_hidh_dev_t *esp_ble_hidh_dev_open(uint8_t *bda, uint8_t address_type); #else esp_hidh_dev_t *esp_ble_hidh_dev_open(esp_bd_addr_t bda, esp_ble_addr_type_t address_type); #endif /* ... */ #endif /* CONFIG_GATTC_ENABLE */ #ifdef __cplusplus }{...} #endif
Details
Show:
from
Types: Columns: