1
I’m working on a project involving technologies Python3.x
, Raspberry pi
and dysplays OLED
. But there are several displays each with different resolutions and color range and I don’t want to implement the same functionality for each one. I need some library that allows me to write an application for a particular OLED and this application runs on other displays without I need to change the code of the existing one.
I would also like to use a layouts manager for the applications... there are some for OLED displays?
I find a generic solution difficult, because each display has the specific drivers, as long as you work with the same type of display only change the size.
– Dorathoto