You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
365 B
18 lines
365 B
8 years ago
|
#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
|