tobozo
                                            tobozo
                                        
                                    > the source code is here: [twitter-publish.rb](https://github.com/njh/arduino-libraries/blob/main/bin/twitter-publish.rb) thanks! I went with a quick and dirty PHP implementation as I don't have much ruby skills :blush: so far the bot has...
[CoreS3 is supported](https://github.com/tobozo/ESP32-Chimera-Core/blob/master/src/Config.h#L466), it's inheriting autodetect settings from LovyanGFX. It can emulate BtnA/BtnB/BtnC by using `M5.update()` in the loop, invisible buttons use 40px zone at the bottom of the screeen....
hi, you can either try to port [ESP3D](ESP3D) to esp32-S2, or try to adapt the [ESP32-3DPrinter-Bridge](https://github.com/tobozo/ESP32-3DPrinter-Bridge) to the espressif builtin USB API.
> I'd really like support for FS devices at 12mbps 12mbps sound way over limit with the USB 1.0 specifications of this USB driver, unless you're talking of using tinyusb?...
have you seen the this [teensy library](https://github.com/PaulStoffregen/USBHost_t36)? it seems to handle mass storage, filesystem and game controllers altogether separating C++ wrapper from C interface sounds good but I've never tried...
https://github.com/cociorbaandrei/LOGITacker_nrf52832/blob/master/logitacker/logitacker_usb.h this one has a 12bit report descriptor.
it's not the driver's job to negociate a story between USB devices, windows and linux/mac use different strategies anyway. For example a problem with libraries derived from tinyUSB is that...
Tried for a dozen hours but I can't get my head around those tinyusb changes, whatever I try doesn't compile with ESP32. I guess it's enough research for a sunday...
hi, > Cache disabled but cached memory region accessed please specify the espressif core version used with your sketch, there's a chance it's too old and needs to be updated...
see [this post](https://github.com/tobozo/ESP32-USB-Soft-Host/issues/14) where an untested solution is suggested, using this code in your setup, before `USH.init()`: ``` USH.setISRAllocFlag(0) ``` if it doesn't solve the issue, then I'll need much...