SimpleGPIO
SimpleGPIO copied to clipboard
A simple, low-ceremony GPIO library for all your IoT needs
As a developer, I want to integrate my MFRC522 RFID Reader, so that the lib would provide a nice and clean API to this device. First I would like to...
Create high-level objects for: - [x] RGB LED - [x] rotary encoder - [x] 7-segment display (8-pin direct) - [x] motor driver - [x] bit shift register - [ ]...
#2 handles simpler components, but some more advanced ones will need a non-trivial protocol from #6 implemented first. - [ ] LCD panel (UART, requires #6) - [ ] accelerometer...
#2 provides components where all pins are directly mapped to inputs on the component. To reduce wiring to the device for some components, shift registers can be used. - [...
As of v1.0, only GPIO is supported out-of-the-box, though SPI/I2C/UART could be implemented at the consumer-level. It'd be great to have that built into the library, especially since some of...