Hi
Im building a herculien. I’m about to start soon but I’m struggling with the configuration of the G LCD at the smoothie board .
The resolution of the glcd is also poor. How can I increase that?
At the moment I have this written in the configfile :
config settings
panel.enable true # set to true to enable the panel code
panel.lcd reprap_discount_glcd # set type of panel
panel.spi_channel 0 # spi channel to use ; GLCD EXP1 Pins 3,5 (MOSI, SCLK)
panel.spi_cs_pin 0.16 # spi chip select ; GLCD EXP1 Pin 4
panel.encoder_a_pin 3.25!^ # encoder pin ; GLCD EXP2 Pin 3
panel.encoder_b_pin 3.26!^ # encoder pin ; GLCD EXP2 Pin 5
panel.click_button_pin 1.30!^ # click button ; GLCD EXP1 Pin 2
panel.buzz_pin 1.31 # pin for buzzer ; GLCD EXP1 Pin 1
panel.back_button_pin 2.11!^ # 2.11 menu back ; GLCD EXP2 Pin 8
#added panel.encoder_resolution with value of 4
panel.encoder_resolution 4
setup for external sd card on the GLCD which uses the onboard sdcard SPI port
panel.external_sd true # set to true if there is an extrernal sdcard on the panel
panel.external_sd.spi_channel 1 # set spi channel the sdcard is on
panel.external_sd.spi_cs_pin 0.28 # set spi chip select for the sdcard (or any spare pin)
panel.external_sd.sdcd_pin 0.27!^ # sd detect signal (set to nc if no sdcard detect) (or any spare pin)
custom_menu.power_on.enable true #
http://custom_menu.power_on.name Power_on #
custom_menu.power_on.command M80 #
custom_menu.power_off.enable true #
http://custom_menu.power_off.name Power_off #
custom_menu.power_off.command M81 #
custom_menu.filament_change_c.enable true #
http://custom_menu.filament_change_c.name Change Filament #
custom_menu.filament_change_c.command G91|G1 Z0.6 F12000|G90|G1 X0 Y0|G91|G1 Z-0.6|G90|M25 #
custom_menu.filament_change_r.enable true #
http://custom_menu.filament_change_r.name Resume #
custom_menu.filament_change_r.command M24 #
What else do I need ?