Hexiwear OLED

Dependents:   Hexi

Fork of Hexi_OLED_SSD1351 by Hexiwear

Committer:
khuang
Date:
Fri Aug 19 23:05:58 2016 +0000
Revision:
2:fc06b5b5bf6a
Parent:
1:3b5be0ee5f0c
Child:
3:4121d3cd9f60
Added Licensing and Reformatted Init Array for SSD1351 init

Who changed what in which revision?

UserRevisionLine numberNew contents of line
khuang 2:fc06b5b5bf6a 1 /**
khuang 2:fc06b5b5bf6a 2 * \file OLED_fonts.h
khuang 2:fc06b5b5bf6a 3 * \version 1.00
khuang 2:fc06b5b5bf6a 4 * \brief this file contains fonts for the OLED
khuang 2:fc06b5b5bf6a 5 *
khuang 2:fc06b5b5bf6a 6 * Redistribution and use in source and binary forms, with or without modification,
khuang 2:fc06b5b5bf6a 7 * are permitted provided that the following conditions are met:
khuang 2:fc06b5b5bf6a 8 *
khuang 2:fc06b5b5bf6a 9 * Redistributions of source code must retain the above copyright notice, this list
khuang 2:fc06b5b5bf6a 10 * of conditions and the following disclaimer.
khuang 2:fc06b5b5bf6a 11 *
khuang 2:fc06b5b5bf6a 12 * Redistributions in binary form must reproduce the above copyright notice, this
khuang 2:fc06b5b5bf6a 13 * list of conditions and the following disclaimer in the documentation and/or
khuang 2:fc06b5b5bf6a 14 * other materials provided with the distribution.
khuang 2:fc06b5b5bf6a 15 *
khuang 2:fc06b5b5bf6a 16 * Neither the name of NXP, nor the names of its
khuang 2:fc06b5b5bf6a 17 * contributors may be used to endorse or promote products derived from this
khuang 2:fc06b5b5bf6a 18 * software without specific prior written permission.
khuang 2:fc06b5b5bf6a 19 *
khuang 2:fc06b5b5bf6a 20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
khuang 2:fc06b5b5bf6a 21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
khuang 2:fc06b5b5bf6a 22 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
khuang 2:fc06b5b5bf6a 23 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
khuang 2:fc06b5b5bf6a 24 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
khuang 2:fc06b5b5bf6a 25 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
khuang 2:fc06b5b5bf6a 26 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
khuang 2:fc06b5b5bf6a 27 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
khuang 2:fc06b5b5bf6a 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
khuang 2:fc06b5b5bf6a 29 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
khuang 2:fc06b5b5bf6a 30 *
khuang 2:fc06b5b5bf6a 31 * visit: http://www.mikroe.com and http://www.nxp.com
khuang 2:fc06b5b5bf6a 32 *
khuang 2:fc06b5b5bf6a 33 * get support at: http://www.mikroe.com/forum and https://community.nxp.com
khuang 2:fc06b5b5bf6a 34 *
khuang 2:fc06b5b5bf6a 35 * Project HEXIWEAR, 2015
khuang 2:fc06b5b5bf6a 36 */
khuang 2:fc06b5b5bf6a 37
khuang 0:06f42dd3eab3 38 #ifndef HG_OLED_FONTS
khuang 0:06f42dd3eab3 39 #define HG_OLED_FONTS
khuang 0:06f42dd3eab3 40
khuang 0:06f42dd3eab3 41 #include <stdint.h>
khuang 0:06f42dd3eab3 42
khuang 0:06f42dd3eab3 43 extern const uint8_t oledFont_Tahoma_18_Regular[];
khuang 0:06f42dd3eab3 44 extern const uint8_t oledFont_Tahoma_16_Regular[];
khuang 0:06f42dd3eab3 45 extern const uint8_t oledFont_Tahoma_14_Regular[];
khuang 0:06f42dd3eab3 46 extern const uint8_t oledFont_Tahoma_10_Regular[];
khuang 0:06f42dd3eab3 47 extern const uint8_t oledFont_Tahoma_8_Regular[];
khuang 0:06f42dd3eab3 48 extern const uint8_t oledFont_Tahoma_7_Regular[];
khuang 0:06f42dd3eab3 49 extern const uint8_t oledFont_Tahoma_6_Regular[];
khuang 0:06f42dd3eab3 50 extern const uint8_t oledFont_Roboto_Mono11x23_Regular[];
khuang 0:06f42dd3eab3 51 extern const uint8_t oledFont_Exo_2_Condensed10x16_Regular[];
khuang 0:06f42dd3eab3 52 extern const uint8_t oledFont_Exo_2_Condensed15x23_Regular[];
khuang 0:06f42dd3eab3 53 extern const uint8_t oledFont_Exo_2_Condensed21x32_Regular[];
khuang 0:06f42dd3eab3 54
khuang 0:06f42dd3eab3 55 #endif
khuang 1:3b5be0ee5f0c 56