Software-defined GPIOs / GPIO hooks #245
RenaKunisaki
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Consider something like:
Now, suppose you're using a library that handles some device for you such as a rotary encoder. It expects to be told which pins the encoder is connected to:
But due to space constraints, you don't want to connect the encoder to a GPIO. Instead, you want to use an I/O expander such as the MCP23017. That means you need to modify the Encoder library. But with this change, you don't!
Now when the unmodified Encoder library attempts to read GPIOs 40 and 41, it will actually call
_gpioRead_mcp
and get data from the I/O expansion. Thus we can use expansions, virtual GPIOs, remote connections, etc transparently with libraries that expect to use normal GPIOs.Of course this example only demonstrates reading (and assumes Encoder's constructor doesn't touch its GPIOs, else we could use
new
instead), but the same would apply to other operations.As a bonus, it would even be possible to hook the real hardware GPIOs, eg for debugging when something is accessing them, inverting their output, remapping them, etc.
Beta Was this translation helpful? Give feedback.
All reactions