-
-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
config: Add example printer-twotrees-sapphire-pro-2020.cfg config
Reported by @thucar. Signed-off-by: Kevin O'Connor <[email protected]>
- Loading branch information
1 parent
cb414ae
commit 8f8cf7e
Showing
2 changed files
with
90 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
# This file contains common pin mappings for the Two Trees Sapphire | ||
# Pro printer from 2020. To use this config, the firmware should be | ||
# compiled for the STM32F103. When running "make menuconfig", enable | ||
# "extra low-level configuration setup", select the 28KiB bootloader, | ||
# disable "USB for communication", select USART3 for the "Serial | ||
# Port", and set "GPIO pins to set at micro-controller startup" to | ||
# "!PC6,!PD13". | ||
|
||
# Note that the "make flash" command does not work with the Sapphire | ||
# Pro. After running "make", run the following command: | ||
# ./scripts/update_mks_robin.py out/klipper.bin out/Robin_nano35.bin | ||
# Copy the file out/Robin_nano35.bin to an SD card and then restart the | ||
# printer with that SD card. | ||
|
||
# See the example.cfg file for a description of available parameters. | ||
|
||
[stepper_x] | ||
step_pin: PE3 | ||
dir_pin: !PE2 | ||
enable_pin: !PE4 | ||
step_distance: .01 | ||
endstop_pin: !PA15 | ||
position_endstop: 0 | ||
position_max: 230 | ||
homing_speed: 50 | ||
|
||
[stepper_y] | ||
step_pin: PE0 | ||
dir_pin: !PB9 | ||
enable_pin: !PE1 | ||
step_distance: .01 | ||
endstop_pin: !PA12 | ||
position_endstop: 230 | ||
position_max: 230 | ||
homing_speed: 50 | ||
|
||
[stepper_z] | ||
step_pin: PB5 | ||
dir_pin: PB4 | ||
enable_pin: !PB8 | ||
step_distance: .0025 | ||
endstop_pin: !PA11 | ||
position_endstop: 0.5 | ||
position_max: 230 | ||
|
||
[extruder] | ||
step_pin: PD6 | ||
dir_pin: !PD3 | ||
enable_pin: !PB3 | ||
step_distance: .0021 | ||
nozzle_diameter: 0.400 | ||
filament_diameter: 1.750 | ||
heater_pin: PC3 | ||
sensor_type: ATC Semitec 104GT-2 | ||
sensor_pin: PC1 | ||
control: pid | ||
pid_Kp: 14.669 | ||
pid_Ki: 0.572 | ||
pid_Kd: 94.068 | ||
min_temp: 0 | ||
max_temp: 250 | ||
|
||
[heater_bed] | ||
heater_pin: PA0 | ||
sensor_type: EPCOS 100K B57560G104F | ||
sensor_pin: PC0 | ||
control: pid | ||
pid_Kp: 325.10 | ||
pid_Ki: 63.35 | ||
pid_Kd: 417.10 | ||
min_temp: 0 | ||
max_temp: 130 | ||
|
||
[fan] | ||
pin: PB1 | ||
|
||
[mcu] | ||
serial: /dev/ttyUSB0 | ||
restart_method: command | ||
|
||
[printer] | ||
kinematics: corexy | ||
max_velocity: 250 | ||
max_accel: 4500 | ||
max_z_velocity: 25 | ||
max_z_accel: 100 | ||
|
||
[static_digital_output reset_display] | ||
pins: !PC6, !PD13 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters