SSD1306 OLED display driver  1.3.2
This library is developed to control SSD1306 i2c/spi OLED display
font6x8.h
1 /*
2  * SSD1306xLED - Drivers for SSD1306 controlled dot matrix OLED/PLED 128x64 displays
3  *
4  * @created: 2014-08-12
5  * @author: Neven Boyanov
6  *
7  * Copyright (c) 2015 Neven Boyanov, Tinusaur Team. All Rights Reserved.
8  * Distributed as open source software under MIT License, see LICENSE.txt file.
9  * Please, as a favour, retain the link http://tinusaur.org to The Tinusaur Project.
10  *
11  * Source code available at: https://bitbucket.org/tinusaur/ssd1306xled
12  *
13  */
14 
15 #ifndef FONT6x8_H
16 #define FONT6x8_H
17 
18 // ----------------------------------------------------------------------------
19 #if defined(ESP8266) || defined(ESP32) || defined(ESP31B)
20  #include <pgmspace.h>
21 #else
22  #include <avr/pgmspace.h>
23 #endif
24 #include <stdint.h>
25 
26 // ----------------------------------------------------------------------------
27 
28 /* Standard ASCII 6x8 font */
29 extern const uint8_t ssd1306xled_font6x8 [] PROGMEM;
30 
31 // ----------------------------------------------------------------------------
32 
33 #endif // FONT6x8_H