adafruit / Adafruit_CircuitPython_ESP32SPI

ESP32 as wifi with SPI interface
MIT License
103 stars 75 forks source link

Readme dependencies out of date #190

Closed becca01s closed 8 months ago

becca01s commented 8 months ago

I was running a lab today and ran into a lot of issues students were having. Tracked it down to the most recent update (7.0) having a dependency on https://github.com/adafruit/Adafruit_CircuitPython_ConnectionManager Connection Manager. Currently I can't really see if this is listed anywhere, so its unclear where to point people to install. Am I missing something? Or is it just a link on the Readme.md that needs updating? For what its worth, installing the appropriate mpx connection manager in the /lib folder seems to work.

mMerlin commented 8 months ago

Don't know about the readme, but I encounterd that issue doing some testing. The (a) fix is:

circup install adafruit_connection_manager

Assuming you have cirup installed. Something like:

pipenv install --dev circup
FoamyGuy commented 8 months ago

This is now listed in the dependencies section of the readme from #191. Thank you for reporting.