LCD Text

Fork of TextLCD by Wim Huiskamp

Files at this revision

API Documentation at this revision

Comitter:
juanlipari
Date:
Wed May 23 22:31:04 2018 +0000
Parent:
41:111ca62e8a59
Commit message:
Heladera Lauckner Lipari

Changed in this revision

TextLCD_Config.h Show annotated file Show diff for this revision Revisions of this file
TextLCD_UDC.h Show annotated file Show diff for this revision Revisions of this file
TextLCD_UDC.inc Show annotated file Show diff for this revision Revisions of this file
diff -r 111ca62e8a59 -r fe799a84c809 TextLCD_Config.h
--- a/TextLCD_Config.h	Fri Nov 06 18:59:27 2015 +0000
+++ b/TextLCD_Config.h	Wed May 23 22:31:04 2018 +0000
@@ -72,7 +72,7 @@
 #define ADAFRUIT       0
 #define DFROBOT        0
 #define LCM1602        0
-#define YWROBOT        0
+#define YWROBOT        1
 #define GYLCD          0
 #define MJKDZ          0
 #define SYDZ           0
diff -r 111ca62e8a59 -r fe799a84c809 TextLCD_UDC.h
--- a/TextLCD_UDC.h	Fri Nov 06 18:59:27 2015 +0000
+++ b/TextLCD_UDC.h	Wed May 23 22:31:04 2018 +0000
@@ -53,7 +53,7 @@
 extern const char udc_6[];       // checkerboard
 extern const char udc_7[];       // \
 
-//extern const char udc_degr[];    // Degree symbol
+extern const char udc_degr[];    // Degree symbol
 
 //extern const char udc_TM_T[];    // Trademark T
 //extern const char udc_TM_M[];    // Trademark M
@@ -93,7 +93,9 @@
 //extern const char udc_duck[];
 //extern const char udc_check[];
 //extern const char udc_cross[];
-//extern const char udc_retarrow[];
+extern const char udc_retarrow[];
+extern const char udc_uparrow[];
+extern const char udc_downarrow[];
 //extern const char udc_OK[];       // Ok
 //extern const char udc_1_2[];      // 1/2
 //extern const char udc_Euro[];     // Euro symbol
diff -r 111ca62e8a59 -r fe799a84c809 TextLCD_UDC.inc
--- a/TextLCD_UDC.inc	Fri Nov 06 18:59:27 2015 +0000
+++ b/TextLCD_UDC.inc	Wed May 23 22:31:04 2018 +0000
@@ -65,7 +65,7 @@
 const char udc_6[]  = {0x15, 0x0a, 0x15, 0x0a, 0x15, 0x0a, 0x15, 0x00};  // checkerboard
 const char udc_7[]  = {0x10, 0x08, 0x04, 0x02, 0x01, 0x00, 0x10, 0x00};  // \
 
-//const char udc_degr[]   = {0x06, 0x09, 0x09, 0x06, 0x00, 0x00, 0x00, 0x00};  // Degree symbol
+const char udc_degr[]   = {0x06, 0x09, 0x09, 0x06, 0x00, 0x00, 0x00, 0x00};  // Degree symbol
 
 //const char udc_TM_T[]   = {0x1F, 0x04, 0x04, 0x04, 0x00, 0x00, 0x00, 0x00};  // Trademark T
 //const char udc_TM_M[]   = {0x11, 0x1B, 0x15, 0x11, 0x00, 0x00, 0x00, 0x00};  // Trademark M
@@ -109,12 +109,13 @@
 //const char udc_duck[]     = {0x00, 0x0c, 0x1D, 0x0F, 0x0F, 0x06, 0x00, 0x00};
 //const char udc_check[]    = {0x00, 0x01, 0x03, 0x16, 0x1C, 0x08, 0x00, 0x00};
 //const char udc_cross[]    = {0x00, 0x1B, 0x0E, 0x04, 0x0E, 0x1B, 0x00, 0x00};
-//const char udc_retarrow[] = {0x01, 0x01, 0x05, 0x09, 0x1f, 0x08, 0x04, 0x00};
+const char udc_retarrow[] = {0x01, 0x01, 0x05, 0x09, 0x1f, 0x08, 0x04, 0x00};
 //const char udc_OK[]       = {0x08, 0x14, 0x14, 0x08, 0x05, 0x06, 0x05, 0x05};  // OK
 //const char udc_1_2[]      = {0x11, 0x12, 0x17, 0x09, 0x13, 0x04, 0x07, 0x00};  // 1/2
 //const char udc_Euro[]     = {0x06, 0x09, 0x08, 0x1E, 0x1E, 0x08, 0x09, 0x06};  // Euro symbol
 //const char udc_key[]      = {0x07, 0x07, 0x04, 0x04, 0x0E, 0x11, 0x0E, 0x00};  // Key symbol
-
+const char udc_uparrow[]      = {0x04, 0x0E, 0x15, 0x04, 0x04, 0x04, 0x04, 0x04};
+const char udc_downarrow[]      = {0x04, 0x04, 0x04, 0x04, 0x04, 0x15, 0x0E, 0x04};
 //const char udc_None[]       = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; 
 //const char udc_All[]        = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}; 
 #endif /* UDC_EXAMPLES */