Hey guys So since I know this community is Most likely to use azteeg

When you relocate pin/wire your config needs to be matched.

Everything works fine except as card reader

Please post pix of wire setup.

Ok, place SD in you PC and right click, select format. Choose Fat32. Hit enter.

@Matt_Wils np change. dont have wires going to the pins SD_Mosi, SD_Miso, and SD_SCK because i cant find anytnign in the config file about them so maybe thats my issue

@Matt_Wils okni hooked up all wires as shown in the image
but i have no idea what a spi channel is

@Matt_Wils check pic for pin designation for the display

I’ll get back with you. I Should be home in 2hr.

@Matt_Wils ok

Panel See [http://smoothieware.org]

panel.enable true # set to true to enable the panel code

Example for reprap discount GLCD

on glcd EXP1 is to left and EXP2 is to right, pin 1 is bottom left, pin 2 is top left etc.

+5v is EXP1 pin 10, Gnd is EXP1 pin 9

panel.lcd reprap_discount_glcd #
panel.spi_channel 0 # OK spi channel to use ; GLCD EXP1 Pins 3,5 (MOSI, SCLK)
panel.spi_cs_pin SSEL1 # OK spi chip select ; GLCD EXP1 Pin 4
panel.encoder_a_pin 1.27!^ # OK encoder pin ; GLCD EXP2 Pin 3
panel.encoder_b_pin 1.25!^ # OK encoder pin ; GLCD EXP2 Pin 5
panel.click_button_pin 3.26!^ # OK click button ; GLCD EXP1 Pin 2
panel.buzz_pin 1.30 # OK pin for buzzer ; GLCD EXP1 Pin 1
#panel.button_pause_pin 1.23!^ # kill/pause ; GLCD EXP2 Pin 8 either
#panel.back_button_pin 1.23!^ # back button ; GLCD EXP2 Pin 8 or
kill_button_enable true # OK set to true to enable a kill button
kill_button_pin 1.23^ # OK kill button pin. default is same as pause button 2.12 (Add ^ for external buttons)

panel.contrast 18 # OK override contrast setting (default is 18)
panel.encoder_resolution 2 # OK override number of clicks to move 1 item (default is 2)
panel.menu_offset 1 # OK here controls how sensitive the menu is. some panels will need 1

panel.alpha_jog_feedrate 6000 # x jogging feedrate in mm/min
panel.beta_jog_feedrate 6000 # y jogging feedrate in mm/min
panel.gamma_jog_feedrate 3000 # z jogging feedrate in mm/min

panel.hotend_temperature 242 # temp to set hotend when preheat is selected
panel.bed_temperature 100 # temp to set bed when preheat is selected

setup for external sd card on the RRD GLCD which shares the onboard sdcard SPI port

panel.external_sd false # 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)

This is what I utilized/followed http://forums.reprap.org/read.php?13,486023
Also dont forget to set panel.external_sd true

There are many variable/options, so there isn’t a wrong or right way.