Uri Shaked
Uri Shaked
🤦♂️ The alternative would be to make the left side high, the right side low (to match the existing pinout).
Looking at the original pull request (which introduced the slide potentiometer), it seems like this issue was there from the very beginning: https://github.com/wokwi/wokwi-elements/pull/63/files#diff-5611a9ccd27b0203c136edee13127d7d11b638ebf8bf610e5df1d691acaab9ffR12-R14
Relevant underlying code (from ESP-IDF): https://github.com/espressif/esp-idf/issues/12826#issuecomment-1862540712
Upon further investigation, the issue is that the code is trying to output the same signal on multiple pins (e.g. on ESP32, U2TXD is mapped both to 25 and 26),...
Update: still on it
Should be fixed now. Solving the original issue uncovered a few more issues with the UART implementation (baud rate not calculated correctly on ESP32-S3/C3, UART1 interrupt broken on ESP32-S2, incorrect...
Thanks for reporting! This happens due to some of the optimizations we're doing with ESP32. They work well in (almost) every scenario - FastLED is the exception. A workaround would...
Excellent! The ESP32 emulator is not open source at the moment. But if you are curious, it's very similar in nature to the RP2040 simulator at https://github.com/wokwi/rp2040js. I also presented...
Thanks for reporting! Can you please provide a link to a Wokwi project that demonstrates the issue?
Thanks for reporting! I updated the github action file to upload an artifact with the final diagram.json / firmware binary that fails: https://github.com/tyeth/esp32-lang-lab/blob/52aed28899d845508513cbfc7d5fabecc29928b3/.github/workflows/build-python-circuitpython-hello-world.yaml#L150-L156 The goal is to be able to...