There are changes that breaks compatibility with older versions.
-
You'll have to change data type for all your binary resources such as images and fonts from
const char MySymbol[] PROGMEM = {
to
const uint8_t MySymbol[] PROGMEM = {
-
Arguments of
setContrast
fromchar
touint8_t
void OLEDDisplay::setContrast(char contrast, char precharge, char comdetect);
to
void OLEDDisplay::setContrast(uint8_t contrast, uint8_t precharge, uint8_t comdetect);