This repository was archived by the owner on Dec 8, 2025. It is now read-only.
|
Is support for more hardware planned? Or is counted on support from contributors? It would be very nice if DeviceScript would support cheap displays like SSD1306, ILI9341, ILI9225, 12864 and ST7735. And of course many other hardware devices and chips. |
Answered by
mmoskal
May 17, 2023
Replies: 2 comments 3 replies
|
Some things are easier to implement (simple GPIO, analog sensors, or I2C devices), while others are more complicated. The display in particular needs SPI support (or that parallel protocol they use). Either the whole driver would need to be implemented in C or an SPI interface would need to be exposed to DeviceScript, probably directly and not through the Jacdac bus due to efficiency reasons. We currently have no big plans for adding lots of hardware, but contributions are always welcome! |
3 replies
Answer selected by
edwinm
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Some things are easier to implement (simple GPIO, analog sensors, or I2C devices), while others are more complicated.
The display in particular needs SPI support (or that parallel protocol they use). Either the whole driver would need to be implemented in C or an SPI interface would need to be exposed to DeviceScript, probably directly and not through the Jacdac bus due to efficiency reasons.
We currently have no big plans for adding lots of hardware, but contributions are always welcome!