18 lines
365 B
C
18 lines
365 B
C
#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
|