T-vK / ESP32-BLE-Keyboard

Bluetooth LE Keyboard library for the ESP32 (Arduino IDE compatible)
2.27k stars 378 forks source link

bleKeyboard.press #274

Open merco opened 6 months ago

merco commented 6 months ago

With this example

 bleKeyboard.press('1');
 bleKeyboard.press('2');
 bleKeyboard.press('3');
 bleKeyboard.press('4');
 bleKeyboard.press('5');
delay(1000);
bleKeyboard.releaseAll();
delay(2000);

why the '5' key remains "Down"? All that keycodes should be in the _keyReport.keys array.

immagine