Hello,
I am working with a Wipy 3.0 and and OLED display 128x64 using the I2C interface. At the moment I can display texts on the display without any problems, but I would like to change the text size. The library method (.text()) that I am using does not support any parameter to change
the font size.
I know this functionality is well supported on Arduino and Raspberry Pi, but I haven’t seen any micropython code yet.
Any help would be appreciated.
Here is the link of the ssd1306 that I am using
Notes:
a) ‘const’ is missing so I added: -from micropython import const
b) I replaced all .high() to .value(1)
c) I replaced all .low() to .value(0)