#include <ssd1306.h>
const uint8_t Owl [] PROGMEM = {
};
void setup() {
// put your setup code here, to run once:
ssd1306_128x64_i2c_init();
ssd1306_clearScreen( );
ssd1306_clear();
ssd1306_set_cursor(0, 0);
ssd1306_write_string("Hello, World!", Font_6x8, 1); // Font_6x8 is a common bitmap font
ssd1306_update_screen();
}
void loop() {
// put your main code here, to run repeatedly:
}