Custom Graphics for 16x2 or 20x4 LCD

Hello all -

Looking to see if XOD has a method or hack to allow creating custom characters for display on a 16x2 or 20x4 LCD. The Arduino IDE would allow defining the bits within a 5x7 character space. For instance, an alarm bell could be defined as:

// Define a graphic - Alarm Bell
byte Bell[] = {
B00100,
B01110,
B01110,
B01110,
B11111,
B00000,
B00100,
B00000
};

The definition would be used in printing the character on the LCD further down in the code.

Any help would be greatly appreciated. Thank You!

1 Like

try using this library

2 Likes

Works like a charm! Thank you!

1 Like

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.