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


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

--

Legend:

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

    v5 v6  
    3232[[Image(HardwareUsersGuides/UserIOBoard_v1.0/Files:LCD_charExample_4.png)]]
    3333
    34 The 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.
     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 (character number 64). The light-colored pixels here represent white (all ones for R/G/B).
    3535{{{
    3636#!C
     
    4949[[Image(HardwareUsersGuides/UserIOBoard_v1.0/Files:LCD_charExample_blueBlack.png)]]
    5050
     51The 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 (character number 131). The blue-colored pixels here represent solid blue ([RRRGGGBB] = [00000011] = 0x3).
     52{{{
     53#!C
     54unsigned char pixels_blueBlack[64] = {
     553, 3, 3, 3, 0, 0, 0, 0,
     563, 3, 3, 3, 0, 0, 0, 0,
     573, 3, 3, 3, 0, 0, 0, 0,
     583, 3, 3, 3, 0, 0, 0, 0,
     593, 3, 3, 3, 0, 0, 0, 0,
     603, 3, 3, 3, 0, 0, 0, 0,
     613, 3, 3, 3, 0, 0, 0, 0,
     623, 3, 3, 3, 0, 0, 0, 0};
     63}}}
    5164
    5265=== Default Character Map ===