1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef SSD1306_H #define SSD1306_H #include <stdbool.h> #include <stdio.h> bool iota_gfx_init(void); void iota_gfx_task(void); bool iota_gfx_off(void); bool iota_gfx_on(void); void iota_gfx_flush(void); void iota_gfx_write_char(uint8_t c); void iota_gfx_write(const char *data); void iota_gfx_write_P(const char *data); void iota_gfx_clear_screen(void); #endif