Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of TextLCD by
TextLCD_UDC.h
00001 /* mbed TextLCD Library, for LCDs based on HD44780 controllers 00002 * Copyright (c) 2014, WH 00003 * 2014, v01: WH, Extracted from TextLCD.h as of v14 00004 * 00005 * Permission is hereby granted, free of charge, to any person obtaining a copy 00006 * of this software and associated documentation files (the "Software"), to deal 00007 * in the Software without restriction, including without limitation the rights 00008 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 00009 * copies of the Software, and to permit persons to whom the Software is 00010 * furnished to do so, subject to the following conditions: 00011 * 00012 * The above copyright notice and this permission notice shall be included in 00013 * all copies or substantial portions of the Software. 00014 * 00015 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 00016 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 00017 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 00018 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 00019 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 00020 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 00021 * THE SOFTWARE. 00022 */ 00023 #ifndef MBED_TEXTLCDUDC_H 00024 #define MBED_TEXTLCDUDC_H 00025 00026 #include "TextLCD_Config.h" 00027 00028 /** Some sample User Defined Chars 5x7 dots */ 00029 #if(LCD_UDC == 1) 00030 //extern const char udc_ae[]; //æ 00031 //extern const char udc_0e[]; //ø 00032 //extern const char udc_ao[]; //å 00033 //extern const char udc_AE[]; //Æ 00034 //extern const char udc_0E[]; //Ø 00035 //extern const char udc_Ao[]; //Å 00036 //extern const char udc_PO[]; //Padlock Open 00037 //extern const char udc_PC[]; //Padlock Closed 00038 00039 //extern const char udc_alpha[]; //alpha 00040 //extern const char udc_ohm[]; //ohm 00041 //extern const char udc_sigma[]; //sigma 00042 //extern const char udc_pi[]; //pi 00043 //extern const char udc_root[]; //root 00044 00045 extern const char udc_0[]; // |> 00046 extern const char udc_1[]; // <| 00047 extern const char udc_2[]; // | 00048 extern const char udc_3[]; // || 00049 extern const char udc_4[]; // ||| 00050 extern const char udc_5[]; // = 00051 extern const char udc_6[]; // checkerboard 00052 extern const char udc_7[]; // \ 00053 00054 extern const char udc_degr[]; // Degree symbol 00055 00056 extern const char udc_TM_T[]; // Trademark T 00057 extern const char udc_TM_M[]; // Trademark M 00058 00059 //extern const char udc_Bat_Hi[]; // Battery Full 00060 //extern const char udc_Bat_Ha[]; // Battery Half 00061 //extern const char udc_Bat_Lo[]; // Battery Low 00062 extern const char udc_Bat_Hi[]; // Battery Full 00063 extern const char udc_Bat_Ha[]; // Battery Half 00064 extern const char udc_Bat_Lo[]; // Battery Low 00065 extern const char udc_AC[]; // AC Power 00066 00067 extern const char udc_smiley[]; // Smiley 00068 //extern const char udc_droopy[]; // Droopey 00069 //extern const char udc_note[]; // Note 00070 00071 //extern const char udc_bar_1[]; // Bar 1 00072 //extern const char udc_bar_2[]; // Bar 11 00073 //extern const char udc_bar_3[]; // Bar 111 00074 //extern const char udc_bar_4[]; // Bar 1111 00075 //extern const char udc_bar_5[]; // Bar 11111 00076 00077 //extern const char udc_ch_1[]; // Hor bars 4 00078 //extern const char udc_ch_2[]; // Hor bars 4 (inverted) 00079 //extern const char udc_ch_3[]; // Ver bars 3 00080 //extern const char udc_ch_4[]; // Ver bars 3 (inverted) 00081 //extern const char udc_ch_yr[]; // Year (kana) 00082 //extern const char udc_ch_mo[]; // Month (kana) 00083 //extern const char udc_ch_dy[]; // Day (kana) 00084 //extern const char udc_ch_mi[]; // minute (kana) 00085 extern const char udc_None[]; 00086 extern const char udc_All[]; 00087 #endif /* LCD_UDC Examples */ 00088 00089 #endif // MBED_TEXTLCDUDC_H
Generated on Tue Jul 12 2022 13:32:09 by
1.7.2
