Changes between Version 4 and Version 5 of HardwareUsersGuides/UserIOBoard_v1.0/LCD


Ignore:
Timestamp:
Aug 5, 2008, 3:51:01 AM (16 years ago)
Author:
murphpo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HardwareUsersGuides/UserIOBoard_v1.0/LCD

    v4 v5  
    2929Here are the 64-pixel representations of two example characters, taken from the default character map (see below).
    3030
    31 '''"4"'''
     31'''"4"''' [[BR]]
    3232[[Image(HardwareUsersGuides/UserIOBoard_v1.0/Files:LCD_charExample_4.png)]]
    3333
    34 '''Solid colors - blue/black'''
     34The 64-byte array that represents the same character is below; these are the same values used to initialize this character in the default character map.
     35{{{
     36#!C
     37unsigned char pixels_four[64] = {
     380x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00,
     390x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00, 0x00,
     400x00, 0x00, 0xFF, 0x00, 0xFF, 0x00, 0x00, 0x00,
     410x00, 0xFF, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00,
     420x00, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00,
     430x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00,
     440x00, 0x00, 0x00, 0x00, 0xFF, 0x00, 0x00, 0x00,
     450x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
     46}}}
     47
     48'''Solid colors - blue/black''' [[BR]]
    3549[[Image(HardwareUsersGuides/UserIOBoard_v1.0/Files:LCD_charExample_blueBlack.png)]]
    3650