Skip to content

Commit

Permalink
Update Marlin/ultralcd.pde
Browse files Browse the repository at this point in the history
The joris' char drawins are expressed in binary so to show their content's in a more visual fashion.

This is not a code modification as much as a readibility modification.
  • Loading branch information
G. W. C. committed Sep 14, 2012
1 parent 769796e commit c433142
Showing 1 changed file with 30 additions and 3 deletions.
33 changes: 30 additions & 3 deletions Marlin/ultralcd.pde
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,36 @@ void lcd_init()
B10001,
B01110
};
byte uplevel[8]={0x04, 0x0e, 0x1f, 0x04, 0x1c, 0x00, 0x00, 0x00};//thanks joris
byte refresh[8]={0x00, 0x06, 0x19, 0x18, 0x03, 0x13, 0x0c, 0x00}; //thanks joris
byte folder [8]={0x00, 0x1c, 0x1f, 0x11, 0x11, 0x1f, 0x00, 0x00}; //thanks joris
byte uplevel[8]={
B00100,
B01110,
B11111,
B00100,
B11100,
B00000,
B00000,
B00000
}; //thanks joris
byte refresh[8]={
B00000,
B00110,
B11001,
B11000,
B00011,
B10011,
B01100,
B00000,
}; //thanks joris
byte folder [8]={
B00000,
B11100,
B11111,
B10001,
B10001,
B11111,
B00000,
B00000
}; //thanks joris
lcd.begin(LCD_WIDTH, LCD_HEIGHT);
lcd.createChar(1,Degree);
lcd.createChar(2,Thermometer);
Expand Down

0 comments on commit c433142

Please sign in to comment.