Hi, I recently stumbled upon those affordable colour OLED displays embedded with SSD1331 chip. I began with Adafruit library, however considering my familiarity with U8G and its successor U8G2, I would prefer to use U8G2 if the library is compatible with SSD1331. An extensive research brought up the famed UCG library by Olikraus which is a great option, though, I would like to know if there is any exixting compatiblity with U8G2 library. I intend to use certain native U8G2 graphic elements like shapes, fonts colour options. The display constructor that UCG implements is incompatible with U8G2, and certain functions like SetCursor do not work either. DrawBox and other shapes from U8G2 get implemented in UCG though.
Ucglib_SSD1331_18x96x64_UNIVISION_SWSPI ucg(/*sclk=*/ 13, /*data=*/ 11, /*cd=*/ 9, /*cs=*/ 10, /*reset=*/ 8);
Thanks.