Results 90 comments of Chris Drake

Sorry... I've forgotten those now. Might have been me marking "stuff that doesn't work" when I was running my program which tested outputs, before I realized that "doesn't work" is...

I expect it's at least all of these: https://circuitpython.org/downloads?mcufamilies=esp32 (since the "classic" esp32 doesn't support the USBC magic of the new boards). In my case, it was https://circuitpython.org/board/ai-thinker-esp32-cam/ , https://circuitpython.org/board/esp32-wrover-dev-cam/...

The "aerodynamics of a cow" seems to already do that? Just use an STL of your urban domain instead of the cow - the display shows velocity and direction by...

Ditto that. It's possible to build native "C" standalone .mpy modules (example - the "factorial" demo)... that would definitely be worth exploring so this driver can ship as a file,...

I took a stab at fixing this, but of course, the IP is always 0.0.0.0 until the connection is up `print("Starting IDE web service on http://" + wlan.ifconfig()[0] + "/")...

I'm in the middle of researching a *much* better idea... mDNS... eg: "esp32-1234.local" (where we can pick the name by putting it in some file or whatever - e.g. "geiger.local"...

For anyone else struggling with this - Control-S does the save. Yes, this is not documented anywhere obvious - not here, not even on the Ace repo... You can't save...

I modified microwebsrv so it handles compressed files - cuts down the space used by ace etc by about 66%... made me want to port everything to a newer version...

Yeah - that's the whole point of my compression mod - I've got everything installed locally on the esp32 (I'm even using the OTA setup, so there's only 2mb storage,...

If you want to gzip-compress the ace.js file (makes it 117179 instead of 439253 bytes) you can use my MicroWebSrv.py from https://github.com/gitcnd/MicroWebSrv OR better - use https://github.com/gitcnd/MicroWebSrv/blob/master/microWebSrv-min.py (but name it...