diff options
Diffstat (limited to 'keyboards/orthodox/ssd1306.h')
| -rw-r--r-- | keyboards/orthodox/ssd1306.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/keyboards/orthodox/ssd1306.h b/keyboards/orthodox/ssd1306.h new file mode 100644 index 000000000..b0c74f987 --- /dev/null +++ b/keyboards/orthodox/ssd1306.h | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | #ifndef SSD1306_H | ||
| 2 | #define SSD1306_H | ||
| 3 | |||
| 4 | #include <stdbool.h> | ||
| 5 | #include <stdio.h> | ||
| 6 | |||
| 7 | bool iota_gfx_init(void); | ||
| 8 | void iota_gfx_task(void); | ||
| 9 | bool iota_gfx_off(void); | ||
| 10 | bool iota_gfx_on(void); | ||
| 11 | void iota_gfx_flush(void); | ||
| 12 | void iota_gfx_write_char(uint8_t c); | ||
| 13 | void iota_gfx_write(const char *data); | ||
| 14 | void iota_gfx_write_P(const char *data); | ||
| 15 | void iota_gfx_clear_screen(void); | ||
| 16 | |||
| 17 | #endif | ||
