Results 176 comments of dragoncoder047

> Please LMK if that works for you Looks like it should, except I can't figure out how to install it from git. I did: ```sh cd ~/Documents/Arduino mkdir -p...

> The Bluepad32 Core (the one that can be used from Arduino IDE) is not ready yet. So you're saying the core that I installed and used initially was a...

ok, lmk when you have done that, no rush.

I think it may be the *USB* interface, not Wifi, because the S2 does USB-to-serial conversion by itself, whereas the regular ESP32 has to use a external converter.

I think https://stackoverflow.com/a/25327028 provides a pretty good answer for this. It uses `vfork()` but they both do the same sort of thing. Also keep in mind it says *might be...

I compiled uLisp again today on a fresh install of arduino & esp core and also got this warning as well as the longjmp warnings: ``` /home/dc047/Desktop/arduino stuff/ulisp-esp32/ulisp.hpp: In function...

> Actually `char` can be signed or unsigned. OK, good to know that `char` $\equiv$ `byte` on ESP32 at least.

> Perhaps write it as an Extensions file, using the new facility introduced in uLisp release 4.4? I could, but it involves adding a new stream so it would involve...

> What are the benefits and potential applications for such a feature? I think the biggest benefit is that once the socket connection is established, the microcontroller can push data...

after a cursory look at this ```diff get relativeFrame() { if (!spriteData || !curAnim || curAnimDir === null) { return this.frame; } const anim = spriteData.anims[curAnim.name]; if (typeof anim ===...