Sharp LCD library forked to use a Lucida 8 pt font

Fork of SharpLCD by Rohit Grover

Revision:
9:fc71206a6b64
Parent:
7:4737b3b2ed50
--- a/dotfont.c	Tue Apr 28 14:39:16 2015 +0000
+++ b/dotfont.c	Wed May 13 08:14:07 2015 +0000
@@ -23,6 +23,8 @@
 extern const FONT_CHAR_INFO centuryGothic_20ptDescriptors[];
 extern const uint8_t centuryGothic_28ptBlackBitmaps[];
 extern const FONT_CHAR_INFO centuryGothic_28ptDescriptors[];
+extern const uint8_t droidSansMono_9ptBlackBitmaps[];
+extern const FONT_CHAR_INFO droidSansMono_9ptDescriptors[];
 
 /* Accumulation of all avaialble fonts */
 const FONT_INFO dotfonts[] = {
@@ -30,69 +32,87 @@
     {
         "Lucida",
         8,   /* pointSize */
+        1,   /* spacing */
         lucidaConsole_8ptDescs,
         lucidaConsole_8ptmaps
     },
     {
         "Comic Sans",
         10,   /* pointSize */
+        2,   /* spacing */
         comicSansMS_10ptDescriptors,
         comicSansMS_10ptBitmaps
     },
     {
         "Square Head Black",
         8,   /* pointSize */
+        2,   /* spacing */
         sFSquareHead_8ptDescriptors,
         sFSquareHead_8ptBlackBitmaps
     },
     {
         "Square Head",
         10,   /* pointSize */
+        2,   /* spacing */
         sFSquareHead_10ptDescriptors,
         sFSquareHead_10ptBitmaps
     },
     {
         "Square Head Black",
         10,   /* pointSize */
+        2,   /* spacing */
         sFSquareHead_10ptDescriptors,
         sFSquareHead_10ptBlackBitmaps
     },
     {
         "Square Head",
         16,   /* pointSize */
+        2,   /* spacing */
         sFSquareHead_16ptDescriptors,
         sFSquareHead_16ptBitmaps
     },
     {
         "Square Head Black",
         16,   /* pointSize */
+        2,   /* spacing */
         sFSquareHead_16ptDescriptors,
         sFSquareHead_16ptBlackBitmaps
     },
     {
         "Square Head Black",
         20,   /* pointSize */
+        2,   /* spacing */
         sFSquareHead_20ptDescriptors,
         sFSquareHead_20ptBlackBitmaps
     },
     {
         "Century Gothic Black",
         9,   /* pointSize */
+        2,   /* spacing */
         centuryGothic_9ptDescriptors,
         centuryGothic_9ptBlackBitmaps
     },
     {
         "Century Gothic Black",
         20,   /* pointSize */
+        2,   /* spacing */
         centuryGothic_20ptDescriptors,
         centuryGothic_20ptBlackBitmaps
     },
     {
         "Century Gothic Black",
         28,   /* pointSize */
+        2,   /* spacing */
         centuryGothic_28ptDescriptors,
         centuryGothic_28ptBlackBitmaps
     },
+    {
+        "Droid Sans Mono Black",
+        9,   /* pointSize */
+        0,   /* spacing */
+        droidSansMono_9ptDescriptors,
+        droidSansMono_9ptBlackBitmaps
+    },