Today I found the time to connect the 0.49 inch, I2c display to the Arduino. I used the u8glib. The display is not in the list but this one works fine:
U8GLIB_SSD1306_64X48 u8g(U8G_I2C_OPT_NONE)
Now that the display is connected, I will play around with the U8Glib. The first Bitmap works:)
Discussions
Become a Hackaday.io Member
Create an account to leave a comment. Already have an account? Log In.
This oled could be 64x32, to make it work you can:
copy u8g_dev_ssd1306_64x48.c file and rename to u8g_dev_ssd1306_64x32.c
replace all 64x48 to 64x32, then search "static const uint8_t u8g_dev_ssd1306_64x32_init_seq[] PROGMEM = {", multiplex need to be changed from 0x0a8, 0x02f in 0x0a8, 0x01f
edit u8glib.h and u8g.h to add respective classes
Are you sure? yes | no