diff options
author | Tircown <74233386+Tircown@users.noreply.github.com> | 2021-05-03 20:31:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-03 14:31:23 -0400 |
commit | f2c74ec0239ca9fe4b6c84d05337e86fa093b492 (patch) | |
tree | 3c1c71a52b298fc8602a2518082a7d0ae4494dfa /config | |
parent | f10247a498f2a73f5b2ffab931ff427951bf5342 (diff) | |
download | kutter-f2c74ec0239ca9fe4b6c84d05337e86fa093b492.tar.gz kutter-f2c74ec0239ca9fe4b6c84d05337e86fa093b492.tar.xz kutter-f2c74ec0239ca9fe4b6c84d05337e86fa093b492.zip |
kinematics: Add hybrid-corexy and hybrid-corexz (#4229)
Signed-off-by: Fabrice GALLET <tircown@gmail.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/example-hybrid-corexy.cfg | 79 | ||||
-rw-r--r-- | config/example-hybrid-corexz.cfg | 79 |
2 files changed, 158 insertions, 0 deletions
diff --git a/config/example-hybrid-corexy.cfg b/config/example-hybrid-corexy.cfg new file mode 100644 index 00000000..41a90eaa --- /dev/null +++ b/config/example-hybrid-corexy.cfg @@ -0,0 +1,79 @@ +# This file is an example config file for hybrid corexy style printers also +# known as Markforged kinematic. One may copy and edit this file to configure +# a new hybrid corexy printer. + +# DO NOT COPY THIS FILE WITHOUT CAREFULLY READING AND UPDATING IT +# FIRST. Incorrectly configured parameters may cause damage. + +# See docs/Config_Reference.md for a description of parameters. + +[stepper_x] +step_pin: PF0 +dir_pin: PF1 +enable_pin: !PD7 +microsteps: 16 +rotation_distance: 40 +endstop_pin: ^PE5 +position_endstop: 0 +position_max: 200 +homing_speed: 50 + +[stepper_y] +step_pin: PF6 +dir_pin: PF7 +enable_pin: !PF2 +microsteps: 16 +rotation_distance: 40 +endstop_pin: ^PJ1 +position_endstop: 0 +position_max: 200 +homing_speed: 50 + +[stepper_z] +step_pin: PL3 +dir_pin: PL1 +enable_pin: !PK0 +microsteps: 16 +rotation_distance: 8 +endstop_pin: ^PD3 +position_endstop: 0.5 +position_max: 200 + +[extruder] +step_pin: PA4 +dir_pin: PA6 +enable_pin: !PA2 +microsteps: 16 +rotation_distance: 33.500 +nozzle_diameter: 0.400 +filament_diameter: 1.750 +heater_pin: PB4 +sensor_type: ATC Semitec 104GT-2 +sensor_pin: PK5 +control: pid +pid_Kp: 22.2 +pid_Ki: 1.08 +pid_Kd: 114 +min_temp: 0 +max_temp: 250 + +[heater_bed] +heater_pin: PH5 +sensor_type: EPCOS 100K B57560G104F +sensor_pin: PK6 +control: watermark +min_temp: 0 +max_temp: 130 + +[fan] +pin: PH6 + +[mcu] +serial: /dev/ttyACM0 + +[printer] +kinematics: hybrid_corexy +max_velocity: 300 +max_accel: 3000 +max_z_velocity: 25 +max_z_accel: 30 diff --git a/config/example-hybrid-corexz.cfg b/config/example-hybrid-corexz.cfg new file mode 100644 index 00000000..d2cf907c --- /dev/null +++ b/config/example-hybrid-corexz.cfg @@ -0,0 +1,79 @@ +# This file is an example config file for hybrid corexz style printers also +# known as Markforged kinematic. One may copy and edit this file to configure +# a new hybrid corexy printer. + +# DO NOT COPY THIS FILE WITHOUT CAREFULLY READING AND UPDATING IT +# FIRST. Incorrectly configured parameters may cause damage. + +# See docs/Config_Reference.md for a description of parameters. + +[stepper_x] +step_pin: PF0 +dir_pin: PF1 +enable_pin: !PD7 +microsteps: 16 +rotation_distance: 40 +endstop_pin: ^PE5 +position_endstop: 0 +position_max: 200 +homing_speed: 50 + +[stepper_y] +step_pin: PF6 +dir_pin: PF7 +enable_pin: !PF2 +microsteps: 16 +rotation_distance: 40 +endstop_pin: ^PJ1 +position_endstop: 0 +position_max: 200 +homing_speed: 50 + +[stepper_z] +step_pin: PL3 +dir_pin: PL1 +enable_pin: !PK0 +microsteps: 16 +rotation_distance: 8 +endstop_pin: ^PD3 +position_endstop: 0.5 +position_max: 200 + +[extruder] +step_pin: PA4 +dir_pin: PA6 +enable_pin: !PA2 +microsteps: 16 +rotation_distance: 33.500 +nozzle_diameter: 0.400 +filament_diameter: 1.750 +heater_pin: PB4 +sensor_type: ATC Semitec 104GT-2 +sensor_pin: PK5 +control: pid +pid_Kp: 22.2 +pid_Ki: 1.08 +pid_Kd: 114 +min_temp: 0 +max_temp: 250 + +[heater_bed] +heater_pin: PH5 +sensor_type: EPCOS 100K B57560G104F +sensor_pin: PK6 +control: watermark +min_temp: 0 +max_temp: 130 + +[fan] +pin: PH6 + +[mcu] +serial: /dev/ttyACM0 + +[printer] +kinematics: hybrid_corexz +max_velocity: 300 +max_accel: 3000 +max_z_velocity: 25 +max_z_accel: 30 |