lbernstone
lbernstone
https://docs.espressif.com/projects/arduino-esp32/en/latest/installing.html#installing-using-arduino-ide Use the development link
You may need to switch the width and height settings (ie 240x320 instead of 320x240).
You are running out of stack space because you are passing Strings around. Don't do that, especially in `String command_execute(String com, String value){`, you should pass in const char*, and...
This likely means you are trying to access a variable which is out of scope. If you want assistance, provide a minimal example which can be directly compiled. [Decode any...
The code you provided is unusable due to formatting issues. Please repost it with 3 backticks (\`\`\`) surrounding to make it a code block. Do you get the error if...
Ok, so you have USB Mode set to USB-OTG, and all the USB on boot options set to disable, correct? Add only the ARDUINO_USB_CDC_RX_EVENT back into your code, and remark...
[Works in Wokwi](https://wokwi.com/projects/402143811247119361). Maybe your module is designed for 5V?
You don't need to pass anything to begin if you use the default pins. If you want to change pins, you should uncomment the REASSIGN_PINS block, and you can see...
I will test with the latest code on a physical board, just to check that there isn't a regression in the code, but the most likely issue beyond that is...
I don't really have the ability to verify, but this kind of thing can often happen if you get a bunch of sockets in TIME_WAIT or CLOSE_WAIT status because sessions...