Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # This file contains common pin mappings for the BIGTREETECH SKR mini
- # E3 v1.2. To use this config, the firmware should be compiled for the
- # STM32F103 with a "28KiB bootloader". Also, select "Enable extra
- # low-level configuration options" and configure "GPIO pins to set at
- # micro-controller startup" to "!PC13".
- # The "make flash" command does not work on the SKR mini E3. Instead,
- # after running "make", copy the generated "out/klipper.bin" file to a
- # file named "firmware.bin" on an SD card and then restart the SKR
- # mini E3 with that SD card.
- # See docs/Config_Reference.md for a description of parameters.
- # Note: This board has a design flaw in its thermistor circuits that
- # cause inaccurate temperatures (most noticeable at low temperatures).
- [stepper_x]
- step_pin: PB13
- dir_pin: !PB12
- enable_pin: !PB14
- microsteps: 16
- rotation_distance: 40
- endstop_pin: ^PC0
- position_endstop: 0
- position_max: 235
- homing_speed: 50
- [tmc2209 stepper_x]
- uart_pin: PB15
- run_current: 0.580
- hold_current: 0.500
- stealthchop_threshold: 250
- [stepper_y]
- step_pin: PB10
- dir_pin: !PB2
- enable_pin: !PB11
- microsteps: 16
- rotation_distance: 40
- endstop_pin: ^PC1
- position_endstop: 0
- position_max: 235
- homing_speed: 50
- [tmc2209 stepper_y]
- uart_pin: PC6
- run_current: 0.580
- hold_current: 0.500
- stealthchop_threshold: 250
- [stepper_z]
- step_pin: PB0
- dir_pin: PC5
- enable_pin: !PB1
- microsteps: 16
- rotation_distance: 8
- endstop_pin: ^PC2
- position_endstop: 0.0
- position_max: 250
- [tmc2209 stepper_z]
- uart_pin: PC10
- run_current: 0.580
- hold_current: 0.500
- stealthchop_threshold: 5
- [extruder]
- step_pin: PB3
- dir_pin: !PB4
- enable_pin: !PD2
- microsteps: 16
- rotation_distance: 22.68
- gear_ratio: 50:17
- nozzle_diameter: 0.400
- filament_diameter: 1.750
- heater_pin: PC8
- sensor_type: EPCOS 100K B57560G104F
- sensor_pin: PA0
- control: pid
- pid_Kp: 21.527
- pid_Ki: 1.063
- pid_Kd: 108.982
- min_temp: 0
- max_temp: 250
- [tmc2209 extruder]
- uart_pin: PC11
- run_current: 0.650
- hold_current: 0.500
- stealthchop_threshold: 5
- [heater_bed]
- heater_pin: PC9
- sensor_type: ATC Semitec 104GT-2
- sensor_pin: PC3
- control: pid
- pid_Kp: 54.027
- pid_Ki: 0.770
- pid_Kd: 948.182
- min_temp: 0
- max_temp: 130
- [fan]
- pin: PA8
- [mcu]
- serial: /dev/serial/by-id/usb-Klipper_stm32f103xe_35FFD705524E343528860543-if00
- [printer]
- kinematics: cartesian
- max_velocity: 300
- max_accel: 3000
- max_z_velocity: 5
- max_z_accel: 100
- [static_digital_output usb_pullup_enable]
- pins: !PC13
- [board_pins]
- aliases:
- # EXP1 header
- EXP1_1=PB5, EXP1_3=PA9, EXP1_5=PA10, EXP1_7=PB8, EXP1_9=<GND>,
- EXP1_2=PB6, EXP1_4=<RST>, EXP1_6=PB9, EXP1_8=PB7, EXP1_10=<5V>
- [virtual_sdcard]
- path: ~/gcode_files
- [display_status]
- lcd_type: st7920
- cs_pin: EXP1_7
- sclk_pin: EXP1_6
- sid_pin: EXP1_8
- encoder_pins: ^EXP1_5, ^EXP1_3
- click_pin: ^!EXP1_2
- [output_pin beeper]
- pin: EXP1_1
- [pause_resume]
- [gcode_macro PAUSE]
- rename_existing: BASE_PAUSE
- default_parameter_X: 230 #edit to your park position
- default_parameter_Y: 230 #edit to your park position
- default_parameter_Z: 10 #edit to your park position
- default_parameter_E: 1 #edit to your retract length
- gcode:
- SAVE_GCODE_STATE NAME=PAUSE_state
- BASE_PAUSE
- G91
- G1 E-{E} F2100
- G1 Z{Z}
- G90
- G1 X{X} Y{Y} F6000
- [gcode_macro RESUME]
- rename_existing: BASE_RESUME
- default_parameter_E: 1 #edit to your retract length
- gcode:
- G91
- G1 E{E} F2100
- G90
- RESTORE_GCODE_STATE NAME=PAUSE_state MOVE=1
- BASE_RESUME
- [gcode_macro CANCEL_PRINT]
- rename_existing: BASE_CANCEL_PRINT
- gcode:
- TURN_OFF_HEATERS
- CLEAR_PAUSE
- SDCARD_RESET_FILE
- BASE_CANCEL_PRINT
- # See the sample-lcd.cfg file for definitions of common LCD displays.
Advertisement
Add Comment
Please, Sign In to add comment