# Smoothieware config on_boot_gcode_enable true # play the on_boot.gcode file on the SD card after boot # Robot module configurations : general handling of movement G-codes and slicing into moves default_feed_rate 5000 # Default rate ( mm/minute ) for G1/G2/G3 moves default_seek_rate 5000 # Default rate ( mm/minute ) for G0 moves mm_per_arc_segment 0.5 # Arcs are cut into segments ( lines ), this is the length for these segments. Smaller values mean more resolution, higher values mean faster computation #mm_per_line_segment 5 # Lines can be cut into segments ( not usefull with cartesian coordinates robots ). # Planner module configuration : Look-ahead and acceleration configuration planner_queue_size 32 # DO NOT CHANGE THIS UNLESS YOU KNOW EXACTLY WHAT YOUR ARE DOING acceleration 10000 # Acceleration in mm/second/second. z_acceleration 6000 # Acceleration for Z only moves in mm/s^2, 0 disables it, disabled by default. DO NOT SET ON A DELTA acceleration_ticks_per_second 1000 # Number of times per second the speed is updated junction_deviation 0.005 # Similar to the old "max_jerk", in millimeters, see : https://github.com/grbl/grbl/blob/master/planner.c#L409 # and https://github.com/grbl/grbl/wiki/Configuring-Grbl-v0.8 . Lower values mean being more careful, higher values means being faster and have more jerk # Stepper module configuration microseconds_per_step_pulse 1 # Duration of step pulses to stepper drivers, in microseconds base_stepping_frequency 100000 # Base frequency for stepping # Stepper module pins ( ports, and pin numbers, appending "!" to the number will invert a pin ) # X axis alpha_steps_per_mm 80 # Steps per mm for alpha stepper: GT2 2mm pitch 20 tooth pulley @1.8° stepper = 200 steps/40mm x 16 micros = 80 alpha_step_pin 2.1 # Pin for alpha stepper step signal alpha_dir_pin 0.11 # Pin for alpha stepper direction alpha_en_pin nc # Pin for alpha enable pin 0.10 alpha_current 0.5 # X stepper motor current x_axis_max_speed 40000 # mm/min alpha_max_rate 50000 # mm/min actuator max speed alpha_acceleration 2500 #5000.0 # mm/sec^2 # Y axis beta_steps_per_mm 80 # Steps per mm for beta stepper: GT2 2mm pitch 20 tooth pulley @1.8° stepper = 200 steps/40mm x 16 micros = 80 beta_step_pin 2.2 # Pin for beta stepper step signal beta_dir_pin 0.20 # Pin for beta stepper direction beta_en_pin nc # Pin for beta enable beta_current 0.5 # Y stepper motor current y_axis_max_speed 40000 # mm/min beta_max_rate 50000 # mm/min actuator max speed beta_acceleration 1250 #2500.0 # mm/sec^2 # Z axis gamma_steps_per_mm 400 # Steps per mm for gamma stepper: 8mm spindle @ 1.8° stepper = 200 steps/8mm x 16 micros = 400 gamma_step_pin 2.3 # Pin for gamma stepper step signal gamma_dir_pin 0.22 # Pin for gamma stepper direction gamma_en_pin nc # Pin for gamma enable gamma_current 0.5 # Z stepper motor current z_axis_max_speed 8000 # mm/min gamma_max_rate 50000.0 # mm/min actuator max speed gamma_acceleration 1000 #2000.0 # mm/sec^2 # A axis delta_steps_per_mm 40 # steps per degree: 160° per rev. @0.9° stepper = 400 steps/160° x 16 micros = 40 delta_step_pin 2.0 # Pin for delta stepper step signal delta_dir_pin 0.5 # Pin for delta stepper direction delta_en_pin nc # Pin for delta enable delta_current 0.5 # Z stepper motor current a_axis_max_speed 360000 # °/min delta_max_rate 360000 # °/min delta_acceleration 9000.0# 36000.0 # °/sec^2 # B axis epsilon_steps_per_mm 400 # steps per mm for epsilon stepper: 8mm spindle @ 1.8° stepper = 200 steps/8mm x 16 micros = 400 epsilon_step_pin 2.8 # Pin for delta stepper step signal epsilon_dir_pin 2.13 # Pin for delta stepper direction epsilon_en_pin nc # Pin for delta enable epsilon_current 0.5 # Z stepper motor current b_axis_max_speed 10000 # mm/min epsilon_max_rate 10000 # mm/min epsilon_acceleration 400.0 # mm/sec^2 # C axis #zeta_steps_per_mm 800 # may be steps per degree for example #zeta_step_pin xx # Pin for delta stepper step signal #zeta_dir_pin xx # Pin for delta stepper direction #zeta_en_pin xx # Pin for delta enable #zeta_current 0.5 # Z stepper motor current #zeta_max_rate 3000 # mm/min #zeta_acceleration 500.0 # mm/sec^2 # TMC2660 settings motor_driver_control.alpha.enable true # alpha (X) is a TMC26X motor_driver_control.alpha.designator X # A to set the settings motor_driver_control.alpha.chip TMC2660 # chip name motor_driver_control.alpha.current 1680 # motor peak current in milliamps motor_driver_control.alpha.max_current 3000 # driver max current in milliamps motor_driver_control.alpha.microsteps 16 # microsteps 256 max motor_driver_control.alpha.alarm true # set to true means the error bits are checked motor_driver_control.alpha.halt_on_alarm false # if set to true means ON_HALT is entered on any error bits being set motor_driver_control.alpha.spi_channel 0 # SPI channel 1 is sdcard channel motor_driver_control.alpha.spi_cs_pin 0.10 # SPI CS pin #motor_driver_control.alpha.spi_frequency 100000 # SPI frequency motor_driver_control.alpha.sense_resistor 100 # set the sense resistor used. motor_driver_control.beta.enable true # beta (Y) is a TMC26X motor_driver_control.beta.designator Y # B to set the settings motor_driver_control.beta.chip TMC2660 # chip name motor_driver_control.beta.current 2800 # peak current in milliamps motor_driver_control.beta.max_current 3000 # driver max current in milliamps motor_driver_control.beta.microsteps 16 # microsteps 256 max motor_driver_control.beta.alarm true # set to true means the error bits are checked motor_driver_control.beta.halt_on_alarm false # if set to true means ON_HALT is entered on any error bits being set motor_driver_control.beta.spi_channel 0 # SPI channel 1 is sdcard channel motor_driver_control.beta.spi_cs_pin 0.19 # SPI CS pin DRV8711 requires inverted CS #motor_driver_control.beta.spi_frequency 100000 # SPI frequency motor_driver_control.beta.sense_resistor 100 # set the sense resistor used motor_driver_control.gamma.enable true # gamma (Z) is a TMC26X motor_driver_control.gamma.designator Z # G to set the settings motor_driver_control.gamma.chip TMC2660 # chip name motor_driver_control.gamma.current 1200 # current in milliamps motor_driver_control.gamma.max_current 3000 # max current in milliamps motor_driver_control.gamma.microsteps 16 # microsteps 256 max motor_driver_control.gamma.alarm true # set to true means the error bits are checked motor_driver_control.gamma.halt_on_alarm false # if set to true means ON_HALT is entered on any error bits being set motor_driver_control.gamma.spi_channel 0 # SPI channel 1 is sdcard channel motor_driver_control.gamma.spi_cs_pin 0.21 # SPI CS pin DRV8711 requires inverted CS #motor_driver_control.gamma.spi_frequency 100000 # SPI frequency motor_driver_control.gamma.sense_resistor 100 # set the sense resistor used motor_driver_control.delta.enable true # delta (E1) is a TMC26X motor_driver_control.delta.designator A # D to set the settings motor_driver_control.delta.chip TMC2660 # chip name motor_driver_control.delta.current 500 # current in milliamps motor_driver_control.delta.max_current 3000 # max current in milliamps motor_driver_control.delta.microsteps 16 # microsteps 256 max #motor_driver_control.delta.decay_mode 1 # decay mode default motor_driver_control.delta.alarm true # set to true means the error bits are checked motor_driver_control.delta.halt_on_alarm false # if set to true means ON_HALT is entered on any error bits being set motor_driver_control.delta.spi_channel 0 # SPI channel 1 is sdcard channel motor_driver_control.delta.spi_cs_pin 0.4 # SPI CS pin #motor_driver_control.delta.spi_frequency 100000 # SPI frequency motor_driver_control.delta.sense_resistor 100 # set the sense resistor used. motor_driver_control.epsilon.enable true # epsilon (E2) is a TMC26X motor_driver_control.epsilon.designator B # E to set the settings motor_driver_control.epsilon.chip TMC2660 # chip name motor_driver_control.epsilon.current 1680 # motor peak current in milliamps motor_driver_control.epsilon.max_current 3000 # driver max current in milliamps motor_driver_control.epsilon.microsteps 16 # microsteps 256 max motor_driver_control.epsilon.alarm true # set to true means the error bits are checked motor_driver_control.epsilon.halt_on_alarm false # if set to true means ON_HALT is entered on any error bits being set motor_driver_control.epsilon.spi_channel 0 # SPI channel 1 is sdcard channel motor_driver_control.epsilon.spi_cs_pin 4.29 # SPI CS pin DRV8711 requires inverted CS #motor_driver_control.epsilon.spi_frequency 100000 # SPI frequency motor_driver_control.epsilon.sense_resistor 100 # set the sense resistor used # Serial communications configuration ( baud rate default to 9600 if undefined ) uart0.baud_rate 115200 # Baud rate for the default hardware serial port second_usb_serial_enable false # This enables a second usb serial port (to have both pronterface and a terminal connected) #msd_disable false # disable the MSD (USB SDCARD) when set to true # Laser module configuration laser_module_enable false # Whether to activate the laser module at all. All configuration is ignored if false. #laser_module_pin 2.7 # this pin will be PWMed to control the laser #laser_module_max_power 0.8 # this is the maximum duty cycle that will be applied to the laser #laser_module_tickle_power 0.0 # this duty cycle will be used for travel moves to keep the laser active without actually burning # Stepper driver fan temperature control configuration temperature_control.driver_fan.enable true # Whether to activate this ( "hotend" ) module at all. All configuration is ignored if false. temperature_control.driver_fan.thermistor_pin 0.24 # Pin for the thermistor to read temperature_control.driver_fan.heater_pin 2.4! # Pin that controls the fan # (the fan is for cooling not heating so we inverse the pin) temperature_control.driver_fan.thermistor EPCOS100K # see http://smoothieware.org/temperaturecontrol#toc5 #temperature_control.driver_fan.beta 4066 # or set the beta value temperature_control.driver_fan.set_m_code 104 # #temperature_control.driver_fan.set_and_wait_m_code 109 # temperature_control.driver_fan.designator T # temperature_control.driver_fan.min_temp -10 # temperature_control.driver_fan.max_temp 100 # temperature_control.driver_fan.bang_bang true # set to true to use bang bang control rather than PID temperature_control.driver_fan.hysteresis 10.0 # set to the temperature in degrees C to use as hysteresis when #temperature_control.driver_fan.p_factor 7 # #temperature_control.driver_fan.i_factor 5 # #temperature_control.driver_fan.d_factor 0 # #temperature_control.driver_fan.pwm_frequency 2000 # we set it but it does not seem to work temperature_control.driver_fan.runaway_heating_timeout 0 # we don't heat so don't care if temperature is reached temperature_control.driver_fan.runaway_range 0 # a rapid delta in temp triggers a halt - 0 disables it #temperature_control.driver_fan.max_pwm 170 # maxpwm - because this is inversed, it is actually a min pwm (fan always on at a minimum) temerature_control.driver_fan.readings_per_second 2 # read this not too often, as smoothieware takes the median out of the last 32 measurements temperature_control.pump.enable true # temperature_control.pump.thermistor_pin 0.23 # temperature_control.pump.heater_pin 2.7 # temperature_control.pump.designator B # #temperature_control.pump.rt_curve 0,115000,25,6000,50,920 # DOES NOT WORK: vacuum sensor curve in negative kPa units temperature_control.pump.min_temp -10 # temperature_control.pump.max_temp 300 # temperature_control.pump.thermistor EPCOS100K # see http://smoothieware.org/temperaturecontrol#toc5 #temperature_control.pump.beta 4066 # or set the beta value temperature_control.pump.bang_bang true # set to true to use bang bang control rather than PID temperature_control.pump.hysteresis 5.0 # set to the temperature in degrees C to use as hysteresis when temperature_control.pump.runaway_heating_timeout 0 # it seems to crash temperature_control.pump.runaway_range 0 # a rapid delta in temp triggers a halt - 0 disables it temperature_control.pump.set_m_code 140 # temperature_control.pump.set_and_wait_m_code 190 # #temperature_control.pump.max_pwm 64 # max pwm, 64 is a good value if driving a 12v resistor with 24v. temperature_control.nozzle.enable true # temperature_control.nozzle.thermistor_pin 0.25 # temperature_control.nozzle.heater_pin nc # temperature_control.nozzle.designator V # temperature_control.nozzle.min_temp -10 # temperature_control.nozzle.max_temp 300 # temperature_control.nozzle.thermistor EPCOS100K # see http://smoothieware.org/temperaturecontrol#toc5 #temperature_control.nozzle.beta 4066 # or set the beta value #temperature_control.nozzle.bang_bang true # set to true to use bang bang control rather than PID #temperature_control.nozzle.hysteresis 5.0 # set to the temperature in degrees C to use as hysteresis when temperature_control.nozzle.runaway_heating_timeout 0 # it seems to crash temperature_control.nozzle.runaway_range 0 # a rapid delta in temp triggers a halt - 0 disables it #temperature_control.nozzle.set_m_code 104 # m-code for setting the desired vacuum level #temperature_control.nozzle.set_and_wait_m_code 109 # m-code for setting and waiting for a desired vacuum level (pick and wait) #temperature_control.nozzle.max_pwm 64 # max pwm, 64 is a good value if driving a 12v resistor with 24v. temperature_control.nozzle.readings_per_second 320 # smoothieware takes the median out of the last 32 measurements, so read frequently # Switch module for valve control switch.valve.enable true # switch.valve.input_on_command M10 # Vacuum on according to http://reprap.org/wiki/G-code#M10:_Vacuum_On_.28CNC_specific.29 switch.valve.input_off_command M11 # switch.valve.output_pin 2.5 # # Switch module for LED control switch.camera_light_top.enable true # switch.camera_light_top.input_on_command M106 # switch.camera_light_top.input_off_command M107 # switch.camera_light_top.output_pin 0.26 # switch.camera_light_bottom.enable true # switch.camera_light_bottom.input_on_command M42 # switch.camera_light_bottom.input_off_command M43 # switch.camera_light_bottom.output_pin 1.22 # # automatically toggle a switch at a specified temperature. Different ones of these may be defined to monitor different temperatures and switch different swithxes # useful to turn on a fan or water pump to cool the hotend #temperatureswitch.hotend.enable true # #temperatureswitch.hotend.designator T # first character of the temperature control designator to use as the temperature sensor to monitor #temperatureswitch.hotend.switch misc # select which switch to use, matches the name of the defined switch #temperatureswitch.hotend.threshold_temp 60.0 # temperature to turn on (if rising) or off the switch #temperatureswitch.hotend.heatup_poll 15 # poll heatup at 15 sec intervals #temperatureswitch.hotend.cooldown_poll 60 # poll cooldown at 60 sec intervals # filament out detector #filament_detector.enable true # #filament_detector.encoder_pin 0.26 # must be interrupt enabled pin (0.26, 0.27, 0.28) #filament_detector.seconds_per_check 2 # may need to be longer #filament_detector.pulses_per_mm 1 .0 # will need to be tuned #filament_detector.bulge_pin 0.27 # optional bulge detector switch and/or manual suspend # Switch module for spindle control #switch.spindle.enable false # ## Endstops new syntax (the name is not significant) # NOTE only a min or a max homing endstop maybe defined endstop.minx.enable true # enable an endstop endstop.minx.limit_enable true # set to true to enable the limit on this endstop endstop.minx.pin 1.24 # pin endstop.minx.axis X # the axis designator endstop.minx.homing_direction home_to_min # direction it moves to the endstop endstop.minx.homing_position 0 # the cartesian coordinate this is set to when it homes endstop.minx.max_travel 700 # the maximum travel in mm before it times out endstop.minx.fast_rate 50 # fast homing rate in mm/sec ** WARNING: per second, unlike feedrates endstop.minx.slow_rate 10 # slow homing rate in mm/sec endstop.minx.retract 5 # bounce off endstop in mm endstop.maxx.enable true # enable an endstop endstop.maxx.limit_enable true # set to true to enable the limit on this endstop endstop.maxx.pin 1.27 # pin endstop.maxx.axis X # the axis designator #endstop.maxx.homing_direction home_to_max # direction it moves to the endstop #endstop.maxx.homing_position 200 # the cartesian coordinate this is set to when it homes #endstop.maxx.max_travel 500 # the maximum travel in mm before it times out #endstop.maxx.fast_rate 50 # fast homing rate in mm/sec** WARNING: per second, unlike feedrates #endstop.maxx.slow_rate 10 # slow homing rate in mm/sec #endstop.maxx.retract 5 # bounce off endstop in mm endstop.miny.enable true # enable an endstop endstop.miny.limit_enable true # set to true to enable the limit on this endstop endstop.miny.pin 1.25 # pin endstop.miny.axis Y # the axis designator #endstop.miny.homing_direction home_to_min # direction it moves to the endstop #endstop.miny.homing_position 0 # the cartesian coordinate this is set to when it homes #endstop.miny.max_travel 750 # the maximum travel in mm before it times out #endstop.miny.fast_rate 40 # fast homing rate in mm/sec** WARNING: per second, unlike feedrates #endstop.miny.slow_rate 10 # slow homing rate in mm/sec #endstop.miny.retract 5 # bounce off endstop in mm endstop.maxy.enable true # enable an endstop endstop.maxy.limit_enable true # set to true to enable the limit on this endstop endstop.maxy.pin 1.28 # pin endstop.maxy.axis Y # the axis designator endstop.maxy.homing_direction home_to_max # direction it moves to the endstop endstop.maxy.homing_position 607 # the cartesian coordinate this is set to when it homes endstop.maxy.max_travel 700 # the maximum travel in mm before it times out endstop.maxy.fast_rate 40 # fast homing rate in mm/sec ** WARNING: per second, unlike feedrates endstop.maxy.slow_rate 10 # slow homing rate in mm/sec endstop.maxy.retract 7 # bounce off endstop in mm #endstop.minz.enable false # enable an endstop #endstop.minz.limit_enable false # set to true to enable the limit on this endstop #endstop.minz.pin 1.26 # pin #endstop.minz.axis Z # the axis designator #endstop.minz.homing_direction home_to_min # direction it moves to the endstop #endstop.minz.homing_position 0 # the cartesian coordinate this is set to when it homes #endstop.minz.max_travel 40 # the maximum travel in mm before it times out #endstop.minz.fast_rate 10 # fast homing rate in mm/sec** WARNING: per second, unlike feedrates #endstop.minz.slow_rate 2 # slow homing rate in mm/sec #endstop.minz.retract 5 # bounce off endstop in mm endstop.maxz.enable true # enable an endstop endstop.maxz.limit_enable true # set to true to enable the limit on this endstop endstop.maxz.pin 1.29 # pin endstop.maxz.axis Z # the axis designator endstop.maxz.homing_direction home_to_max # direction it moves to the endstop endstop.maxz.homing_position 1 # the cartesian coordinate this is set to when it homes endstop.maxz.max_travel 70 # the maximum travel in mm before it times out endstop.maxz.fast_rate 50 # fast homing rate in mm/sec** WARNING: per second, unlike feedrates endstop.maxz.slow_rate 5 # slow homing rate in mm/sec endstop.maxz.retract 1 # bounce off endstop in mm #endstop.mina.enable true # enable an endstop #endstop.mina.limit_enable false # set to true to enable the limit on this endstop #endstop.mina.pin nc # pin #endstop.mina.axis A # the axis designator #endstop.mina.homing_direction home_to_min # direction it moves to the endstop #endstop.mina.homing_position 0 # the cartesian coordinate this is set to when it homes #endstop.mina.max_travel 500 # the maximum travel in mm before it times out #endstop.mina.fast_rate 100 # fast homing rate in mm/sec** WARNING: per second, unlike feedrates #endstop.mina.slow_rate 5 # slow homing rate in mm/sec #endstop.mina.retract 5 # bounce off endstop in mm #endstop.maxa.enable true # enable an endstop #endstop.maxa.limit_enable false # set to true to enable the limit on this endstop #endstop.maxa.pin nc # pin #endstop.maxa.axis A # the axis designator #endstop.maxa.homing_direction home_to_max # direction it moves to the endstop #endstop.maxa.homing_position 350 # the cartesian coordinate this is set to when it homes #endstop.maxa.max_travel 500 # the maximum travel in mm before it times out #endstop.maxa.fast_rate 100 # fast homing rate in mm/sec** WARNING: per second, unlike feedrates #endstop.maxa.slow_rate 5 # slow homing rate in mm/sec #endstop.maxa.retract 5 # bounce off endstop in mm endstop.minb.enable true # enable an endstop endstop.minb.limit_enable true # set to true to enable the limit on this endstop endstop.minb.pin 1.20^ # pin endstop.minb.axis B # the axis designator #endstop.minb.homing_direction home_to_min # direction it moves to the endstop #endstop.minb.homing_position 0 # the cartesian coordinate this is set to when it homes #endstop.minb.max_travel 500 # the maximum travel in mm before it times out #endstop.minb.fast_rate 40 # fast homing rate in mm/sec** WARNING: per second, unlike feedrates #endstop.minb.slow_rate 5 # slow homing rate in mm/sec #endstop.minb.retract 1 # bounce off endstop in mm endstop.maxb.enable true # enable an endstop endstop.maxb.limit_enable true # set to true to enable the limit on this endstop endstop.maxb.pin 1.19^ # pin endstop.maxb.axis B # the axis designator endstop.maxb.homing_direction home_to_max # direction it moves to the endstop endstop.maxb.homing_position 390 # the cartesian coordinate this is set to when it homes endstop.maxb.max_travel 500 # the maximum travel in mm before it times out endstop.maxb.fast_rate 40 # fast homing rate in mm/sec** WARNING: per second, unlike feedrates endstop.maxb.slow_rate 5 # slow homing rate in mm/sec endstop.maxb.retract 1 # bounce off endstop in mm # type of machine #corexy_homing false # set to true if homing on a hbot or corexy # optional order in which axis will home, default is they all home at the same time, # if this is set it will force each axis to home one at a time in the specified order homing_order ZYXB # z axis followed by x, y, b #move_to_origin_after_home false # move XY to 0,0 after homing #endstop_debounce_count 100 # uncomment if you get noise on your endstops, default is 100 #endstop_debounce_ms 1 # uncomment if you get noise on your endstops, default is 1 millisecond debounce #home_z_first true # uncomment and set to true to home the Z first, otherwise Z homes after XY # optional Z probe zprobe.enable true # set to true to enable a zprobe zprobe.probe_pin 1.26 # pin probe is attached to zprobe.slow_feedrate 80 # mm/sec probe feed rate #zprobe.debounce_count 100 # set if noisy zprobe.fast_feedrate 80 # move feedrate mm/sec #zprobe.probe_height 0 # how much above bed to start probe # associated with zprobe the leveling strategy to use #leveling-strategy.three-point-leveling.enable true # a leveling strategy that probes three points to define a plane and keeps the Z parallel to that plane #leveling-strategy.three-point-leveling.point1 100.0,0.0 # the first probe point (x,y) optional may be defined with M557 #leveling-strategy.three-point-leveling.point2 200.0,200.0 # the second probe point (x,y) #leveling-strategy.three-point-leveling.point3 0.0,200.0 # the third probe point (x,y) #leveling-strategy.three-point-leveling.home_first true # home the XY axis before probing #leveling-strategy.three-point-leveling.tolerance 0.03 # the probe tolerance in mm, anything less that this will be ignored, default is 0.03mm #leveling-strategy.three-point-leveling.probe_offsets 0,0,0 # the probe offsets from nozzle, must be x,y,z, default is no offset #leveling-strategy.three-point-leveling.save_plane false # set to true to allow the bed plane to be saved with M500 default is false # kill button (used to be called pause) maybe assigned to a different pin, set to the onboard pin by default kill_button_enable true # set to true to enable a kill button kill_button_pin 2.12 # kill button pin. # Panel See http://smoothieware.org/panel panel.enable false # set to true to enable the panel code # Example viki2 config for an azteeg miniV2 with IDC cable panel.lcd viki2 # set type of panel panel.spi_channel 0 # set spi channel to use P0_18,P0_15 MOSI,SCLK panel.spi_cs_pin 0.16 # set spi chip select panel.encoder_a_pin 3.26!^ # encoder pin panel.encoder_b_pin 3.25!^ # encoder pin panel.click_button_pin 2.11!^ # click button panel.a0_pin 2.6 # st7565 needs an a0 panel.contrast 0 # override contrast setting (default is 9) panel.encoder_resolution 1 # override number of clicks to move 1 item (default is 4) #panel.button_pause_pin 1.30^ # kill/pause set one of these for the auxilliary button on viki2 #panel.back_button_pin 1.22!^ # back button recommended to use this on EXP1 panel.buzz_pin 1.31 # pin for buzzer on EXP2 panel.red_led_pin nc # pin for red led on viki2 on EXP1 ### --> B- endstop panel.blue_led_pin nc # pin for blue led on viki2 on EXP1 ### --> B+ endstop panel.external_sd true # set to true if there is an extrernal sdcard on the panel panel.external_sd.spi_channel 0 # set spi channel the sdcard is on panel.external_sd.spi_cs_pin 1.21 # set spi chip select for the sdcard panel.external_sd.sdcd_pin 1.18!^ # sd detect signal (set to nc if no sdcard detect) 1.18 panel.menu_offset 1 # some panels will need 1 here # Example miniviki2 config #panel.lcd mini_viki2 # set type of panel #panel.spi_channel 0 # set spi channel to use P0_18,P0_15 MOSI,SCLK #panel.spi_cs_pin 0.16 # set spi chip select #panel.encoder_a_pin 3.25!^ # encoder pin #panel.encoder_b_pin 3.26!^ # encoder pin #panel.click_button_pin 2.11!^ # click button #panel.a0_pin 2.6 # st7565 needs an a0 ##panel.contrast 18 # override contrast setting (default is 18) ##panel.encoder_resolution 2 # override number of clicks to move 1 item (default is 2) #panel.menu_offset 1 # 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 200 # z jogging feedrate in mm/min panel.hotend_temperature 185 # temp to set hotend when preheat is selected panel.T1_temperature 185 # temp to set hotend when preheat is selected panel.bed_temperature 60 # temp to set bed when preheat is selected # network settings network.enable false # enable the ethernet network services network.webserver.enable true # enable the webserver network.telnet.enable true # enable the telnet server network.plan9.enable true # enable the plan9 network filesystem network.ip_address 192.168.7.100 # the IP address network.ip_mask 255.255.255.0 # the ip mask network.ip_gateway 192.168.7.254 # the gateway address # Example of a custom menu entry, which will show up in the Custom entry. # NOTE _ gets converted to space in the menu and commands, | is used to separate multiple commands custom_menu.power_on.enable true # custom_menu.power_on.name Power_on # custom_menu.power_on.command M80 # custom_menu.power_off.enable true # custom_menu.power_off.name Power_off # custom_menu.power_off.command M81 # # Azteeg specific settings do not change currentcontrol_module_enable false # digipot_max_current 2.4 # max current digipot_factor 103.0 # factor for converting current to digipot value #51.0 for SD8825, SD6128, BSD4989 leds_disable true # disable using leds after config loaded