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!