]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/nyquist/ssd1306.h
Update copyright info
[qmk_firmware.git] / keyboards / nyquist / ssd1306.h
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