LCD graphics display 128x64 January 31, 2015 10:48AM |
Registered: 8 years ago Posts: 47 |
Re: LCD graphics display 128x64 January 31, 2015 08:34PM |
Registered: 8 years ago Posts: 329 |
Re: LCD graphics display 128x64 February 01, 2015 09:36AM |
Registered: 8 years ago Posts: 47 |
Re: LCD graphics display 128x64 February 04, 2015 10:37AM |
Registered: 8 years ago Posts: 119 |
Re: LCD graphics display 128x64 February 04, 2015 11:17AM |
Registered: 8 years ago Posts: 47 |
Re: LCD graphics display 128x64 February 04, 2015 11:21AM |
Registered: 8 years ago Posts: 47 |
Re: LCD graphics display 128x64 February 04, 2015 01:06PM |
Registered: 8 years ago Posts: 119 |
Re: LCD graphics display 128x64 February 04, 2015 01:55PM |
Registered: 8 years ago Posts: 329 |
#define USE_BIG_EDIT_FONT // save 3120 bytes of PROGMEM by commenting out this line #define FONT_STATUSMENU u8g_font_6x9 #define FONT_MENU u8g_font_6x10_marlin // DOGM parameters (size in pixels) #define DOG_CHAR_WIDTH 6 #define DOG_CHAR_HEIGHT 12 #ifdef USE_BIG_EDIT_FONT #define FONT_MENU_EDIT u8g_font_9x18 #define DOG_CHAR_WIDTH_EDIT 9 #define DOG_CHAR_HEIGHT_EDIT 18 #define LCD_WIDTH_EDIT 14 #else #define FONT_MENU_EDIT u8g_font_6x10_marlin #define DOG_CHAR_WIDTH_EDIT 6 #define DOG_CHAR_HEIGHT_EDIT 12 #define LCD_WIDTH_EDIT 22 #endif
Re: LCD graphics display 128x64 February 04, 2015 02:22PM |
Registered: 8 years ago Posts: 47 |
Re: LCD graphics display 128x64 February 04, 2015 02:29PM |
Registered: 8 years ago Posts: 47 |
Re: LCD graphics display 128x64 February 04, 2015 03:39PM |
Registered: 8 years ago Posts: 119 |
Quote
MindRealm
Check the settings in dogm_lcd_implementation.h...
#define USE_BIG_EDIT_FONT // save 3120 bytes of PROGMEM by commenting out this line #define FONT_STATUSMENU u8g_font_6x9 #define FONT_MENU u8g_font_6x10_marlin // DOGM parameters (size in pixels) #define DOG_CHAR_WIDTH 6 #define DOG_CHAR_HEIGHT 12 #ifdef USE_BIG_EDIT_FONT #define FONT_MENU_EDIT u8g_font_9x18 #define DOG_CHAR_WIDTH_EDIT 9 #define DOG_CHAR_HEIGHT_EDIT 18 #define LCD_WIDTH_EDIT 14 #else #define FONT_MENU_EDIT u8g_font_6x10_marlin #define DOG_CHAR_WIDTH_EDIT 6 #define DOG_CHAR_HEIGHT_EDIT 12 #define LCD_WIDTH_EDIT 22 #endif
// DOGM parameters (size in pixels) #define DOG_CHAR_WIDTH 6 #define DOG_CHAR_HEIGHT 12 #define DOG_CHAR_WIDTH_LARGE 9 #define DOG_CHAR_HEIGHT_LARGE 18 #define START_ROW 0
Re: LCD graphics display 128x64 February 04, 2015 04:35PM |
Registered: 8 years ago Posts: 329 |
#define DOG_CHAR_WIDTH_LARGE 9 #define DOG_CHAR_HEIGHT_LARGE 18
#define DOG_CHAR_WIDTH_LARGE 6 #define DOG_CHAR_HEIGHT_LARGE 12
Re: LCD graphics display 128x64 February 05, 2015 11:20AM |
Registered: 8 years ago Posts: 47 |
Re: LCD graphics display 128x64 February 08, 2015 09:17AM |
Registered: 8 years ago Posts: 792 |