Skip to content

Commit

Permalink
Changed appearance to mouse, closing #52
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminaigner committed Jan 7, 2022
1 parent 5cf45ee commit 756f741
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main/ble_hidd_demo_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,8 @@ static esp_ble_adv_data_t hidd_adv_data = {
.include_txpower = true,
.min_interval = 0x000A, //slave connection min interval, Time = min_interval * 1.25 msec
.max_interval = 0x0010, //slave connection max interval, Time = max_interval * 1.25 msec
.appearance = 0x03c0, //HID Generic,
/** @note: HID generic appearance does not work on some iOS/Amazon FireTV Sticks, see https://github.com/asterics/esp32_mouse_keyboard/issues/52 */
.appearance = 0x03c2, //HID Mouse (keyboard: 0x03c1)
.manufacturer_len = 0,
.p_manufacturer_data = NULL,
.service_data_len = 0,
Expand Down

0 comments on commit 756f741

Please sign in to comment.