| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /**
- * @file OLED_FONT_ATY.h
- *
- * @param Project DEVICE_GENERAL_ATY_LIB
- *
- * @author ATY
- *
- * @copyright
- * - Copyright 2017 - 2023 MZ-ATY
- * - This code follows:
- * - MZ-ATY Various Contents Joint Statement -
- * <a href="https://mengze.top/MZ-ATY_VCJS">
- * https://mengze.top/MZ-ATY_VCJS</a>
- * - CC 4.0 BY-NC-SA -
- * <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">
- * https://creativecommons.org/licenses/by-nc-sa/4.0/</a>
- * - Your use will be deemed to have accepted the terms of this statement.
- *
- * @brief Base functions of GP22 for all embedded device
- *
- * @version
- * - 1_01_220901 > ATY
- * -# Preliminary version, first Release
- ********************************************************************************
- */
- #ifndef __OLED_FONT_ATY_H
- #define __OLED_FONT_ATY_H
- #include "INCLUDE_ATY.h"
- // #define YouYuan6x8
- // #define YouYuan8x16
- #define SongTi8x16
- #define SongTiY8x16
- // #define TemHumSymbol
- extern unsigned char __CODE SysIcons[];
- #ifdef TemHumSymbol
- extern unsigned char __CODE CelsiusCharZh[];/*"℃",0*/
- extern unsigned char __CODE FahrenheitCharZh[];/*"℉",0*/
- extern unsigned char __CODE DegreeCharZh[];/*"°",0*/
- #endif
- // !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~
- // ASCII 32-126
- // ASCII + 32
- // Size:12*6
- // Font YouYuan
- # ifdef YouYuan6x8
- /***********************************6*8****************************************/
- extern unsigned char __CODE Font6x8[];
- #endif
- # ifdef YouYuan8x16
- /**************************************8*16************************************/
- extern unsigned char __CODE Font8x16[];
- #endif
- # ifdef SongTi8x16
- /*******************************8*16 SongTi************************************/
- extern unsigned char __CODE FontSongTi8x16[];
- #endif
- # ifdef SongTiY8x16
- extern unsigned char __CODE FontSongTiY8x16[];
- #endif
- #endif /* __OLED_FONT_ATY_H */
|