Hexiwear OLED

Dependents:   Hexi

Fork of Hexi_OLED_SSD1351 by Hexiwear

Committer:
khuang
Date:
Thu Aug 18 23:01:06 2016 +0000
Revision:
1:3b5be0ee5f0c
Parent:
0:06f42dd3eab3
Child:
2:fc06b5b5bf6a
Hexiwear OLED Display Driver enabled.; Allow images and text to be displayed.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
khuang 0:06f42dd3eab3 1 #ifndef HG_OLED_FONTS
khuang 0:06f42dd3eab3 2 #define HG_OLED_FONTS
khuang 0:06f42dd3eab3 3
khuang 0:06f42dd3eab3 4 #include <stdint.h>
khuang 0:06f42dd3eab3 5
khuang 0:06f42dd3eab3 6 extern const uint8_t oledFont_Tahoma_18_Regular[];
khuang 0:06f42dd3eab3 7 extern const uint8_t oledFont_Tahoma_16_Regular[];
khuang 0:06f42dd3eab3 8 extern const uint8_t oledFont_Tahoma_14_Regular[];
khuang 0:06f42dd3eab3 9 extern const uint8_t oledFont_Tahoma_10_Regular[];
khuang 0:06f42dd3eab3 10 extern const uint8_t oledFont_Tahoma_8_Regular[];
khuang 0:06f42dd3eab3 11 extern const uint8_t oledFont_Tahoma_7_Regular[];
khuang 0:06f42dd3eab3 12 extern const uint8_t oledFont_Tahoma_6_Regular[];
khuang 0:06f42dd3eab3 13 extern const uint8_t oledFont_Roboto_Mono11x23_Regular[];
khuang 0:06f42dd3eab3 14 extern const uint8_t oledFont_Exo_2_Condensed10x16_Regular[];
khuang 0:06f42dd3eab3 15 extern const uint8_t oledFont_Exo_2_Condensed15x23_Regular[];
khuang 0:06f42dd3eab3 16 extern const uint8_t oledFont_Exo_2_Condensed21x32_Regular[];
khuang 0:06f42dd3eab3 17
khuang 0:06f42dd3eab3 18 #endif
khuang 1:3b5be0ee5f0c 19