mirror of
https://github.com/oducceu/klipper_configs.git
synced 2025-12-11 18:24:28 +05:00
93 lines
3.2 KiB
INI
93 lines
3.2 KiB
INI
################################################################################
|
|
# Board: SKR Mini E3 v3.0
|
|
# Printer: Flying Bear Ghost 5
|
|
# Config by Sz77
|
|
# special thanks to ODUCCEU for the base config
|
|
################################################################################
|
|
# WARNING! DO NOT EDIT THIS FILE!
|
|
# To override settings from this file, you can copy and paste the relevant
|
|
# sections into your printer.cfg and change it there.
|
|
################################################################################
|
|
|
|
# Documentation
|
|
# https://www.klipper3d.org/Config_Reference.html
|
|
|
|
|
|
|
|
################################################################################
|
|
# Pin Aliases
|
|
################################################################################
|
|
|
|
[board_pins mks_rn_13]
|
|
aliases:
|
|
## Steppers ####################################################################
|
|
X_STEP_PIN=PB13, X_DIR_PIN=PB12, X_ENABLE_PIN=PB14, X_STOP_PIN=PC0,
|
|
Y_STEP_PIN=PB10, Y_DIR_PIN=PB2, Y_ENABLE_PIN=PB11, Y_STOP_PIN=PC1,
|
|
Z_STEP_PIN=PB0, Z_DIR_PIN=PC5, Z_ENABLE_PIN=PB1, Z_STOP_PIN=PC2,
|
|
E0_STEP_PIN=PB3, E0_DIR_PIN=PB4, E0_ENABLE_PIN=PD1,
|
|
## Heaters #####################################################################
|
|
E_HEATER_PIN=PC8, E_SENSOR_PIN=PA0,
|
|
BED_HEATER_PIN=PC9, BED_SENSOR_PIN=PC4,
|
|
## Fans ########################################################################
|
|
HEATER_FAN_PIN=PC7,
|
|
PARTCOOLING_FAN_PIN=PC6,
|
|
FUN2_FAN_PIN=PB15,
|
|
## Controls ####################################################################
|
|
EXP1_1=PB5, EXP1_3=PA9, EXP1_5=PA10, EXP1_7=PB8, EXP1_9=<GND>,
|
|
EXP1_2=PA15, EXP1_4=<RST>, EXP1_6=PB9, EXP1_8=PD6, EXP1_10=<5V>,
|
|
## BLTouch #####################################################################
|
|
BLTOUCH_SENSOR_PIN=PC2, # MT_DET2
|
|
BLTOUCH_CONTROL_PIN=PA1, # SERVO
|
|
## TMC2209 UART ################################################################
|
|
TMC_UART_PIN=PC11, TMC_TX_PIN=PC10,
|
|
|
|
################################################################################
|
|
# MCU
|
|
################################################################################
|
|
|
|
[mcu]
|
|
serial: /dev/serial/by-id/usb-Klipper_stm32g0b1xx_570032000C50415833323420-if00
|
|
restart_method: command
|
|
|
|
################################################################################
|
|
# Sensors
|
|
################################################################################
|
|
|
|
[temperature_sensor board]
|
|
sensor_type: temperature_mcu
|
|
min_temp: 0
|
|
max_temp: 120
|
|
|
|
[temperature_sensor raspberry_pi]
|
|
sensor_type: temperature_host
|
|
min_temp: 0
|
|
max_temp: 100
|
|
|
|
|
|
[filament_switch_sensor filament_sensor]
|
|
event_delay: 3.0
|
|
pause_delay: 0.5
|
|
switch_pin: PC15
|
|
pause_on_runout: True
|
|
runout_gcode:
|
|
PARK_MACRO
|
|
M117 Out of Filament
|
|
|
|
insert_gcode:
|
|
M117 Resuming
|
|
RESUME_MACRO
|
|
|
|
|
|
################################################################################
|
|
# Beeper
|
|
################################################################################
|
|
|
|
[output_pin _BEEPER_pin]
|
|
pin: PB5
|
|
pwm: True
|
|
value: 0
|
|
shutdown_value: 0
|
|
cycle_time: 0.001
|
|
|
|
################################################################################
|