/* ssd1306_glut.h Copyright 2014 Doug Szumski This file is part of simavr. simavr is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. simavr is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with simavr. If not, see . */ #ifndef __SSD1306_GLUT_H__ #define __SSD1306_GLUT_H__ #include "ssd1306_virt.h" // Keep colours in sync with array typedef enum { SSD1306_GL_WHITE, SSD1306_GL_BLUE } ssd1306_colour_t; void ssd1306_gl_draw (ssd1306_t *part); void ssd1306_gl_init (float pix_size, ssd1306_colour_t oled_colour); #endif