tobozo
tobozo
checkout the master
hi, please refer to the keyboard parser in [M5Stack_Grey_USB_Test](https://github.com/tobozo/ESP32-USB-Soft-Host/blob/main/examples/M5Stack_Grey_USB_Test/), where `usbkbd.h` implements a basic qwerty layout, and `kbdparser.h` handles the parsing events. just copy `usbkbd.h` and `kbdparser.h` files to your...
quick fix: find the `checkLatestVersion()` function in the shell script and properly escape the offending `v?` prefix in the regular expression before: CHECKLATESTVERSION_REGEX="v?[0-9][A-Za-z0-9\.-]*" after: CHECKLATESTVERSION_REGEX="v\?[0-9][A-Za-z0-9\.-]*"
please see issue #153
indeed the type is the same as the variable name in the readme and the examples, that's certainly confusing :-) here's what the compiler probably expects: ```cpp esp32FOTA esp32FOTA("esp32-fota-http", "1.0.0");...
hi, DNS failure is a problem on your network, maybe your router is offline or filtering traffic
hey @Alexandre2003 thanks for your feedback if you're using TFT_eSPI then you don't have to declare TFT_WIDTH and TFT_HEIGHT from inside the .ino sketch so it's safe to comment whatever...
hey @Rfman707 thanks for your feedback That's a very old sketch, and it's not a surprise it doesn't scale well. If you believe this is related to the display driver,...
Hey David, thanks for your feedback :+1: My effort was mostly to refactor the code in an attempt to understand how it worked, so I may have failed at naming...