#include <TinyWireM.h>
#include <Tiny4kOLED.h>
const uint8_t jorik [] PROGMEM = {
// '9210bcca-fc11-46ab-a550-da05a3fba8f2, 128x64px
// '283264bc-04ba-4ddb-80ce-49059b55ccec', 128x64px
0b00110011,0b00110011,0b11001100,0b11001100,0b00110011,0b00110011,0b11001100,0b11001100
};
void setup() {
oled.begin(128, 64, sizeof(tiny4koled_init_defaults), tiny4koled_init_defaults);
oled.setFont(FONT8X16);
oled.enableChargePump(); // The default is off, but most boards need this.
oled.setRotation(1); // The default orientation is not the most commonly used.
oled.clear();
oled.on();
oled.bitmap(0,0,8,1,jorik);
}
void loop() {
}