/**
* @file OLED_FONT_ATY.h
*
* @param Project DEVICE_GENERAL_ATY_LIB
*
* @author ATY
*
* @copyright
* - Copyright 2017 - 2026 MZ-ATY
* - This code follows:
* - MZ-ATY Various Contents Joint Statement -
*
* https://mengze.top/MZ-ATY_VCJS
* - CC 4.0 BY-NC-SA -
*
* https://creativecommons.org/licenses/by-nc-sa/4.0/
* - Your use will be deemed to have accepted the terms of this statement.
*
* @brief Base functions of GP22 for C platform
*
* @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 */