You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm interested in using this library with the GPIO expander mode from a PC (https://www.raspberrypi.org/magpi/pi-zero-gpio-expander/). That way I could plug in the pi 0 with an inky phat display, update the inky display, and unplug. No OS required.
How hard would this be to port and use in that fashion?
The text was updated successfully, but these errors were encountered:
In my experience it's best to port the underlying transport libraries by "shimming" some custom code in their place. I'm surprised there's not a general purpose solution to this problem already out there.
You would need to create fake versions of spidev and RPi.GPIO that you install locally on your PC (or just have in the same folder, or virtual env, as your code). These fake versions would implement all the method calls that Inky uses (not many) and redirect them to equivalent GPIO Zero calls:
Feature Request
I'm interested in using this library with the GPIO expander mode from a PC (https://www.raspberrypi.org/magpi/pi-zero-gpio-expander/). That way I could plug in the pi 0 with an inky phat display, update the inky display, and unplug. No OS required.
How hard would this be to port and use in that fashion?
The text was updated successfully, but these errors were encountered: