Select one of the symbols to view example projects that use it.
 
Outline
#include "sdkconfig.h"
#include "esp_err.h"
#include "esp_log.h"
#include "esp_event.h"
#include "esp_hid_common.h"
esp_hidh_dev_s
esp_hidh_dev_t
ESP_HIDH_EVENTS;
esp_hidh_event_t
esp_hidh_event_data_t
esp_hidh_config_t
esp_hidh_init(const esp_hidh_config_t *);
esp_hidh_deinit();
esp_hidh_dev_close(esp_hidh_dev_t *);
esp_hidh_dev_free(esp_hidh_dev_t *);
esp_hidh_dev_exists(esp_hidh_dev_t *);
esp_hidh_dev_output_set(esp_hidh_dev_t *, size_t, size_t, uint8_t *, size_t);
esp_hidh_dev_feature_set(esp_hidh_dev_t *, size_t, size_t, uint8_t *, size_t);
esp_hidh_dev_feature_get(esp_hidh_dev_t *, size_t, size_t, size_t, uint8_t *, size_t *);
esp_hidh_dev_set_report(esp_hidh_dev_t *, size_t, size_t, int, uint8_t *, size_t);
esp_hidh_dev_get_report(esp_hidh_dev_t *, size_t, size_t, int, size_t);
esp_hidh_dev_get_idle(esp_hidh_dev_t *);
esp_hidh_dev_set_idle(esp_hidh_dev_t *, uint8_t);
esp_hidh_dev_get_protocol(esp_hidh_dev_t *);
esp_hidh_dev_set_protocol(esp_hidh_dev_t *, uint8_t);
esp_hidh_dev_dump(esp_hidh_dev_t *, FILE *);
esp_hidh_dev_bda_get(esp_hidh_dev_t *);
esp_hidh_dev_transport_get(esp_hidh_dev_t *);
esp_hidh_dev_config_get(esp_hidh_dev_t *);
esp_hidh_dev_name_get(esp_hidh_dev_t *);
esp_hidh_dev_manufacturer_get(esp_hidh_dev_t *);
esp_hidh_dev_serial_get(esp_hidh_dev_t *);
esp_hidh_dev_vendor_id_get(esp_hidh_dev_t *);
esp_hidh_dev_product_id_get(esp_hidh_dev_t *);
esp_hidh_dev_version_get(esp_hidh_dev_t *);
esp_hidh_dev_appearance_get(esp_hidh_dev_t *);
esp_hidh_dev_usage_get(esp_hidh_dev_t *);
esp_hidh_dev_reports_get(esp_hidh_dev_t *, size_t *, esp_hid_report_item_t **);
esp_hidh_dev_report_maps_get(esp_hidh_dev_t *, size_t *, esp_hid_raw_report_map_t **);
#include "esp_hidh_transport.h"
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_hid/include/esp_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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2017-2023 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #pragma once #include "sdkconfig.h" #include "esp_err.h" #include "esp_log.h" #include "esp_event.h" #include "esp_hid_common.h"5 includes #ifdef __cplusplus extern "C" { #endif /** * @brief HIDH structure forward declaration *//* ... */ struct esp_hidh_dev_s; typedef struct esp_hidh_dev_s esp_hidh_dev_t; ESP_EVENT_DECLARE_BASE(ESP_HIDH_EVENTS); /** * @brief HIDH callback events enum *//* ... */ typedef enum { ESP_HIDH_ANY_EVENT = ESP_EVENT_ANY_ID, /*!< HID device any event */ ESP_HIDH_OPEN_EVENT = 0, /*!< HID device opened */ ESP_HIDH_BATTERY_EVENT, /*!< HID device battery level changed */ ESP_HIDH_INPUT_EVENT, /*!< Received HID device INPUT report */ ESP_HIDH_FEATURE_EVENT, /*!< Received HID device FEATURE report */ ESP_HIDH_CLOSE_EVENT, /*!< HID device closed */ ESP_HIDH_START_EVENT, /*!< HID host stack started, used only for Classic Bluetooth */ ESP_HIDH_STOP_EVENT, /*!< HID host stack stopped, used only for Classic Bluetooth */ ESP_HIDH_CONN_REQUEST_EVENT, /*!< HID device requested connection, used only for USB */ ESP_HIDH_MAX_EVENT, /*!< HID events end marker */ }{ ... } esp_hidh_event_t; /** * @brief HIDH callback parameters union *//* ... */ typedef union { /** * @brief ESP_HIDH_START_EVENT * @note Used only for Classic Bluetooth. *//* ... */ struct { esp_err_t status; /*!< HID host operation status */ }{ ... } start; /*!< HID callback param of ESP_HIDH_START_EVENT */ /** * @brief ESP_HIDH_STOP_EVENT * @note Used only for Classic Bluetooth. *//* ... */ struct { esp_err_t status; /*!< HID host operation status */ }{ ... } stop; /*!< HID callback param of ESP_HIDH_STOP_EVENT */ /** * @brief ESP_HIDH_OPEN_EVENT *//* ... */ struct { esp_hidh_dev_t *dev; /*!< HID Remote bluetooth device */ esp_err_t status; /*!< HID host operation status, used only for Classic Bluetooth */ }{ ... } open; /*!< HID callback param of ESP_HIDH_OPEN_EVENT */ /** * @brief ESP_HIDH_CLOSE_EVENT *//* ... */ struct { esp_hidh_dev_t *dev; /*!< HID Remote bluetooth device. */ int reason; /*!< Reason why the connection was closed. BLE Only */ esp_err_t status; /*!< HID host operation status, used only for Classic Bluetooth */ }{ ... } close; /*!< HID callback param of ESP_HIDH_CLOSE_EVENT */ /** * @brief ESP_HIDH_BATTERY_EVENT *//* ... */ struct { esp_hidh_dev_t *dev; /*!< HID Remote bluetooth device */ uint8_t level; /*!< Battery Level (0-100%) */ esp_err_t status; /*!< HID host operation status */ }{ ... } battery; /*!< HID callback param of ESP_HIDH_BATTERY_EVENT */ /** * @brief ESP_HIDH_INPUT_EVENT *//* ... */ struct { esp_hidh_dev_t *dev; /*!< HID Remote bluetooth device */ esp_hid_usage_t usage; /*!< HID report usage */ uint16_t report_id; /*!< HID report index */ uint16_t length; /*!< HID data length */ uint8_t *data; /*!< The pointer to the HID data */ uint8_t map_index; /*!< HID report map index */ }{ ... } input; /*!< HID callback param of ESP_HIDH_INPUT_EVENT */ /** * @brief ESP_HIDH_FEATURE_EVENT *//* ... */ struct { esp_hidh_dev_t *dev; /*!< HID Remote bluetooth device */ esp_hid_usage_t usage; /*!< HID report usage */ uint16_t report_id; /*!< HID report index */ uint16_t length; /*!< HID data length */ uint8_t *data; /*!< The pointer to the HID data */ uint8_t map_index; /*!< HID report map index */ esp_err_t status; /*!< HID host operation status, used only for Classic Bluetooth */ esp_hid_trans_type_t trans_type; /*!< HID host feature transaction type, used only for Classic Bluetooth */ }{ ... } feature; /*!< HID callback param of ESP_HIDH_FEATURE_EVENT */ /** * @brief ESP_HIDH_CONN_REQUEST_EVENT *//* ... */ struct { esp_hid_transport_t trans_type; /*!< Transport type, currently only USB */ esp_hid_address_t address; /*!< Address of the device */ const void *dev_info; /*!< Information about the device that requests connection. usb_intf_desc_t* for USB */ }{ ... } conn_request; }{ ... } esp_hidh_event_data_t; typedef struct { esp_event_handler_t callback; uint16_t event_stack_size; void *callback_arg; }{ ... } esp_hidh_config_t; /** * @brief Initialize the HID Host component * @param config : pointer to esp_hidh_config_t structure * * @return: ESP_OK on success *//* ... */ esp_err_t esp_hidh_init(const esp_hidh_config_t *config); /** * @brief De-initialize the HID Host component * * @return: ESP_OK on success *//* ... */ esp_err_t esp_hidh_deinit(void); /** * @brief Close HID Device * @param dev : pointer to the device * * @return: ESP_OK on success *//* ... */ esp_err_t esp_hidh_dev_close(esp_hidh_dev_t *dev); /** * @brief Free HID Device Memory * This function MUST be called when handling ESP_HIDH_CLOSE_EVENT * Only then all memory used for the device will be freed. * @param dev : pointer to the device * * @return: ESP_OK on success *//* ... */ esp_err_t esp_hidh_dev_free(esp_hidh_dev_t *dev); /** * @brief Check if the device still exists. * @param dev : pointer to the device * * @return: true if exists *//* ... */ bool esp_hidh_dev_exists(esp_hidh_dev_t *dev); /** * @brief Send an OUTPUT report to the device * @param dev : pointer to the device * @param map_index : index of the device report map * @param report_id : id of the HID OUTPUT report * @param data : pointer to the data to send * @param length : length of the data to send * * @return: ESP_OK on success *//* ... */ esp_err_t esp_hidh_dev_output_set(esp_hidh_dev_t *dev, size_t map_index, size_t report_id, uint8_t *data, size_t length); /** * @brief Send a FEATURE report to the device * @param dev : pointer to the device * @param map_index : index of the device report map * @param report_id : id of the HID FEATURE report * @param data : pointer to the data to send * @param length : length of the data to send * * @return: ESP_OK on success *//* ... */ esp_err_t esp_hidh_dev_feature_set(esp_hidh_dev_t *dev, size_t map_index, size_t report_id, uint8_t *data, size_t length); /** * @brief Get the value a FEATURE report from the device * @param dev : pointer to the device * @param map_index : index of the device report map * @param report_id : id of the HID FEATURE report * @param max_len : size of the buffer that will hold the data * @param data : pointer to the data buffer * @param length : pointer to the value that will be set to the number of bytes received * * @return: ESP_OK on success *//* ... */ esp_err_t esp_hidh_dev_feature_get(esp_hidh_dev_t *dev, size_t map_index, size_t report_id, size_t max_len, uint8_t *data, size_t *length); /** * @brief Set_Report command. * @note For now, this function used only for Classic Bluetooth. * * @param dev : pointer to the device * @param map_index : index of the device report map * @param report_id : id of the HID FEATURE report * @param report_type : report type, defines in `esp_hid_common.h` * @param data : pointer to the data to send * @param length : length of the data to send * * @return: ESP_OK on success *//* ... */ esp_err_t esp_hidh_dev_set_report(esp_hidh_dev_t *dev, size_t map_index, size_t report_id, int report_type, uint8_t *data, size_t length); /** * @brief Get_Report command. * @note For now, this function used only for Classic Bluetooth. * * @param dev : pointer to the device * @param map_index : index of the device report map * @param report_id : id of the HID FEATURE report * @param report_type : report type, defines in `esp_hid_common.h` * @param max_len : size of the buffer that will hold the data * * @return: ESP_OK on success *//* ... */ esp_err_t esp_hidh_dev_get_report(esp_hidh_dev_t *dev, size_t map_index, size_t report_id, int report_type, size_t max_len); /** * @brief Get_Idle Command. * @note For now, this function used only for Classic Bluetooth. * * @param dev : pointer to the device * * @return: ESP_OK on success *//* ... */ esp_err_t esp_hidh_dev_get_idle(esp_hidh_dev_t *dev); /** * @brief Set_Idle Command. * @note For now, this function used only for Classic Bluetooth. * * @param dev : pointer to the device * @param idle_time : idle_time * * @return: ESP_OK on success *//* ... */ esp_err_t esp_hidh_dev_set_idle(esp_hidh_dev_t *dev, uint8_t idle_time); /** * @brief Get_Protocol Command. * @note For now, this function used only for Classic Bluetooth. * * @param dev : pointer to the device * * @return: ESP_OK on success *//* ... */ esp_err_t esp_hidh_dev_get_protocol(esp_hidh_dev_t *dev); /** * @brief Set_Protocol Command. * @note For now, this function used only for Classic Bluetooth. * * @param dev : pointer to the device * @param protocol_mode : protocol_mode * * @return: ESP_OK on success *//* ... */ esp_err_t esp_hidh_dev_set_protocol(esp_hidh_dev_t *dev, uint8_t protocol_mode); /** * @brief Dump the properties of HID Device to UART * @param dev : pointer to the HID Device * @param fp : pointer to the output file *//* ... */ void esp_hidh_dev_dump(esp_hidh_dev_t *dev, FILE *fp); /** * @brief Get the BT Device Address of a HID Device * @param dev : pointer to the HID Device * * @return: pointer to the BDA byte array or NULL *//* ... */ const uint8_t *esp_hidh_dev_bda_get(esp_hidh_dev_t *dev); /** * @brief Get the HID Device Transport * @param dev : pointer to the HID Device * * @return: the transport of the connected device or ESP_HID_TRANSPORT_MAX *//* ... */ esp_hid_transport_t esp_hidh_dev_transport_get(esp_hidh_dev_t *dev); /** * @brief Get the HID Device Cofiguration * @param dev : pointer to the HID Device * * @return: pointer to the config structure or NULL *//* ... */ const esp_hid_device_config_t *esp_hidh_dev_config_get(esp_hidh_dev_t *dev); /** * @brief Get the name of a HID Device * @param dev : pointer to the HID Device * * @return: pointer to the character array or NULL *//* ... */ const char *esp_hidh_dev_name_get(esp_hidh_dev_t *dev); /** * @brief Get the manufacturer of a HID Device * @param dev : pointer to the HID Device * * @return: pointer to the character array *//* ... */ const char *esp_hidh_dev_manufacturer_get(esp_hidh_dev_t *dev); /** * @brief Get the serial number of a HID Device * @param dev : pointer to the HID Device * * @return: pointer to the character array or NULL *//* ... */ const char *esp_hidh_dev_serial_get(esp_hidh_dev_t *dev); /** * @brief Get the VID of a HID Device * @param dev : pointer to the HID Device * * @return: the VID value *//* ... */ uint16_t esp_hidh_dev_vendor_id_get(esp_hidh_dev_t *dev); /** * @brief Get the PID of a HID Device * @param dev : pointer to the HID Device * * @return: the PID value *//* ... */ uint16_t esp_hidh_dev_product_id_get(esp_hidh_dev_t *dev); /** * @brief Get the version HID Device * @param dev : pointer to the HID Device * * @return: the version value *//* ... */ uint16_t esp_hidh_dev_version_get(esp_hidh_dev_t *dev); /** * @brief Get the appearance of BLE HID Device * @param dev : pointer to the BLE HID Device * * @return: the appearance value *//* ... */ uint16_t esp_hidh_dev_appearance_get(esp_hidh_dev_t *dev); //BLE Only /** * @brief Get the calculated HID Device usage type * @param dev : pointer to the HID Device * * @return: the hid usage type *//* ... */ esp_hid_usage_t esp_hidh_dev_usage_get(esp_hidh_dev_t *dev); /** * @brief Get an array of all reports found on a device * @param dev : pointer to the device * @param num_reports : pointer to the value that will be set to the number of reports * @param reports : location to set to the pointer of the reports array * * @return: ESP_OK on success *//* ... */ esp_err_t esp_hidh_dev_reports_get(esp_hidh_dev_t *dev, size_t *num_reports, esp_hid_report_item_t **reports); /** * @brief Get an array of the report maps found on a device * @param dev : pointer to the device * @param num_maps : pointer to the value that will be set to the number of report maps found * @param maps : location to set to the pointer of the report maps array * * @return: ESP_OK on success *//* ... */ esp_err_t esp_hidh_dev_report_maps_get(esp_hidh_dev_t *dev, size_t *num_maps, esp_hid_raw_report_map_t **maps); #include "esp_hidh_transport.h" #ifdef __cplusplus }{...} #endif
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.