Skip to content

Instantly share code, notes, and snippets.

@RobolinkAkademi
Created November 26, 2019 08:19
arduino I2C oled Example
#include "U8glib.h"
U8GLIB_SSD1306_128X64 u8g(U8G_I2C_OPT_NONE | U8G_I2C_OPT_DEV_0);
char bufferX [20];
char bufferY [20];
char bufferZ [20];
void setup() {
}
void loop() {
sprintf(bufferX, "Robolink Akademi");
sprintf(bufferY, " OLED");
sprintf(bufferZ, " Example");
u8g.firstPage();
do {
draw();
} while ( u8g.nextPage() );
delay(10);
}
void draw(void)
{
u8g.setFont(u8g_font_unifont);
u8g.drawStr( 0, 20, bufferX);
u8g.drawStr( 0, 40, bufferY);
u8g.drawStr( 0, 60, bufferZ);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment