alexz006

Results 15 comments of alexz006

> This sounds like an update for docs might be needed? And perhaps a better error message? I think that when creating a new project (`lapis new`), the line `lua_shared_dict...

> //Edit3: So i finally found a fork which supports all, even gamepad: https://github.com/juanmcasillas/ESP32-BLE-Combo Does not work on iPhone 13 Pro Max. And to make it work on Android, you...

Keyboard and mouse https://github.com/Georgegipa/ESP32-BLE-Combo Works on iPhone 13 Pro Max and Windows 11. To make it work on Android, you need to change a line in the file BleCombo.cpp (tested...

My fork with fixes and adding support for reading Numlock/Capslock/Scrolllock state https://github.com/alexz006/ESP32-BLE-Combo

``` void Keyboard_print(String text){ delay(200); if(text.length()>15){ bleKeyboard.print(text.substring(0,15)); text.remove(0, 15); return Keyboard_print(text); } bleKeyboard.print(text); } Keyboard_print("Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et...

``` if(Serial.available()){ String inputCOM = Serial.readStringUntil('\n'); // m-move:20,30,-1 if(inputCOM.indexOf("m-move:") != -1){ inputCOM.replace("m-move:", ""); inputCOM.replace(" ", ""); String xVal = inputCOM.substring(0,inputCOM.indexOf(",")); inputCOM.remove(0, xVal.length()+1); String yVal = inputCOM.substring(0,inputCOM.indexOf(",")); inputCOM.remove(0, yVal.length()+1); String wheel...

ESP sends a "physical" key press, just like on a regular keyboard. Therefore, to input Russian characters (or any other language), you need to send a key combination to switch...

You cannot write Russian text using blekeyboard.println(). As an alternative, translate Cyrillic characters into Latin characters, as on a keyboard, and then perform blekeyboard.println(). Something like this: ```c++ void Keyboard_println(String...

https://github.com/h2zero/NimBLE-Arduino/pull/422

Try this fork: https://github.com/alexz006/ESP32-BLE-Combo