sanguinololu 1.3b and the 12864 LCD April 18, 2015 12:13AM |
Registered: 9 years ago Posts: 22 |
Re: sanguinololu 1.3b and the 12864 LCD April 18, 2015 04:33AM |
Registered: 10 years ago Posts: 590 |
Re: sanguinololu 1.3b and the 12864 LCD May 09, 2015 11:19PM |
Registered: 9 years ago Posts: 22 |
Re: sanguinololu 1.3b and the 12864 LCD May 10, 2015 12:04PM |
Registered: 10 years ago Posts: 590 |
Re: sanguinololu 1.3b and the 12864 LCD May 13, 2015 11:47PM |
Registered: 10 years ago Posts: 476 |
Re: sanguinololu 1.3b and the 12864 LCD May 16, 2015 11:39AM |
Registered: 9 years ago Posts: 22 |
Re: sanguinololu 1.3b and the 12864 LCD May 17, 2015 02:54AM |
Registered: 10 years ago Posts: 476 |
Re: sanguinololu 1.3b and the 12864 LCD June 29, 2015 09:03AM |
Registered: 9 years ago Posts: 22 |
Re: sanguinololu 1.3b and the 12864 LCD June 30, 2015 03:58AM |
Registered: 10 years ago Posts: 476 |
Re: sanguinololu 1.3b and the 12864 LCD June 30, 2015 06:44AM |
Registered: 9 years ago Posts: 22 |
Re: sanguinololu 1.3b and the 12864 LCD June 30, 2015 09:23PM |
Registered: 10 years ago Posts: 476 |
Re: sanguinololu 1.3b and the 12864 LCD June 30, 2015 11:44PM |
Registered: 9 years ago Posts: 22 |
Re: sanguinololu 1.3b and the 12864 LCD July 01, 2015 03:12AM |
Registered: 10 years ago Posts: 476 |
Re: sanguinololu 1.3b and the 12864 LCD July 19, 2015 12:42AM |
Registered: 9 years ago Posts: 22 |
Re: sanguinololu 1.3b and the 12864 LCD July 19, 2015 08:51PM |
Registered: 10 years ago Posts: 476 |
Re: sanguinololu 1.3b and the 12864 LCD July 19, 2015 11:02PM |
Registered: 9 years ago Posts: 22 |
Re: sanguinololu 1.3b and the 12864 LCD July 20, 2015 09:31AM |
Registered: 10 years ago Posts: 476 |
Re: sanguinololu 1.3b and the 12864 LCD July 22, 2015 07:19AM |
Registered: 9 years ago Posts: 22 |
Re: sanguinololu 1.3b and the 12864 LCD July 22, 2015 07:58PM |
Registered: 10 years ago Posts: 476 |
#ifdef U8GLIB_ST7920 //SPI GLCD 12864 ST7920 ( like [www.digole.com] ) For Melzi V2.0 #if MB(MELZI) // Added check for Melzi boards #define LCD_PINS_RS 30 //CS chip select /SS chip slave select #define LCD_PINS_ENABLE 29 //SID (MOSI) #define LCD_PINS_D4 17 //SCK (CLK) clock #define BEEPER 27 // Pin 27 is take by LED_Pin, but Melzi LED do nothing with Marlin and I take this pin for BEEPER.... See here > [github.com] , If you want use this pin with Gcode M42 instead BEEPER #else // Added pins for Sanguinololu 1.3 #define LCD_PINS_RS 4 #define LCD_PINS_ENABLE 17 #define LCD_PINS_D4 30 #define LCD_PINS_D5 29 #define LCD_PINS_D6 28 #define LCD_PINS_D7 27 #endif
//sangui u8glib support #ifdef U8GLIB_ST7920 //SPI GLCD 12864 ST7920 ( like [www.digole.com] ) For Melzi V2.0 #if MOTHERBOARD == 63 // Added check for Melzi boards #define LCD_PINS_RS 30 //CS chip select /SS chip slave select #define LCD_PINS_ENABLE 29 //SID (MOSI) #define LCD_PINS_D4 17 //SCK (CLK) clock #define BEEPER 27 // Pin 27 is take by LED_Pin, but Melzi LED do nothing with Marlin and I take this pin for BEEPER.... See here > [github.com] , If you want use this pin with Gcode M42 instead BEEPER #else // Added pins for Sanguinololu 1.3 #define LCD_PINS_RS 4 #define LCD_PINS_ENABLE 17 #define LCD_PINS_D4 30 #define LCD_PINS_D5 29 #define LCD_PINS_D6 28 #define LCD_PINS_D7 27 #endif #endif
Re: sanguinololu 1.3b and the 12864 LCD July 22, 2015 10:55PM |
Registered: 9 years ago Posts: 22 |
Re: sanguinololu 1.3b and the 12864 LCD July 26, 2015 01:58AM |
Registered: 10 years ago Posts: 476 |
avrdude: verification error, first mismatch at byte 0x1f800 0x20 != 0x0c avrdude: verification error; content mismatchI will try again later tonight with pragma enabled.
Re: sanguinololu 1.3b and the 12864 LCD July 26, 2015 03:07AM |
Admin Registered: 14 years ago Posts: 7,202 |
Re: sanguinololu 1.3b and the 12864 LCD July 26, 2015 05:40AM |
Registered: 10 years ago Posts: 476 |
Re: sanguinololu 1.3b and the 12864 LCD July 27, 2015 12:08AM |
Admin Registered: 14 years ago Posts: 7,202 |
Re: sanguinololu 1.3b and the 12864 LCD July 27, 2015 08:36PM |
Registered: 10 years ago Posts: 476 |