diff options
author | Marco Robustini <robustinimarco@gmail.com> | 2021-05-12 16:19:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-12 10:19:25 -0400 |
commit | 831a4fe7faa6f03d9cc64ae273eee887bef113d1 (patch) | |
tree | 79a6af964add661a43baba916532e49cfe25846d /config | |
parent | b4b2afca3be2355e628819e7e8638a754875bf2a (diff) | |
download | kutter-831a4fe7faa6f03d9cc64ae273eee887bef113d1.tar.gz kutter-831a4fe7faa6f03d9cc64ae273eee887bef113d1.tar.xz kutter-831a4fe7faa6f03d9cc64ae273eee887bef113d1.zip |
config: Configuration file for RuRamps V1.3 boards (#4279)
Signed-off-by: Marco Robustini <robustinimarco@gmail.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/generic-ruramps-v1.3.cfg | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/config/generic-ruramps-v1.3.cfg b/config/generic-ruramps-v1.3.cfg new file mode 100644 index 00000000..f656493e --- /dev/null +++ b/config/generic-ruramps-v1.3.cfg @@ -0,0 +1,86 @@ +# This file contains common pin mappings for RuRamps (v1.3) boards. To +# use this config, the firmware should be compiled for the Arduino +# Due. + +# See docs/Config_Reference.md for a description of parameters. + +[stepper_x] +step_pin: PC5 +dir_pin: PC4 +enable_pin: !PA7 +microsteps: 16 +rotation_distance: 40 +endstop_pin: ^PC7 +position_endstop: 0 +position_max: 200 +homing_speed: 50 + +[stepper_y] +step_pin: PD10 +dir_pin: PC3 +enable_pin: !PA7 +microsteps: 16 +rotation_distance: 40 +endstop_pin: ^PC9 +position_endstop: 0 +position_max: 200 +homing_speed: 50 + +[stepper_z] +step_pin: PD9 +dir_pin: PB25 +enable_pin: !PA7 +microsteps: 16 +rotation_distance: 8 +endstop_pin: ^PA20 +position_endstop: 0 +position_max: 200 +homing_speed: 50 + +[extruder] +step_pin: PD6 +dir_pin: PD3 +enable_pin: !PC1 +microsteps: 16 +rotation_distance: 7.700 +nozzle_diameter: 0.400 +filament_diameter: 1.750 +heater_pin: PB27 +sensor_type: EPCOS 100K B57560G104F +sensor_pin: PA16 +control: pid +pid_kp: 15.572 +pid_ki: 0.446 +pid_kd: 136.064 +min_extrude_temp: 160 +min_temp: 0 +max_temp: 270 + +#[extruder1] +#step_pin: PB26 +#dir_pin: PA15 +#enable_pin: !PD1 + +[heater_bed] +heater_pin: PC23 +sensor_type: EPCOS 100K B57560G104F +sensor_pin: PA6 +control: watermark +min_temp: 0 +max_temp: 130 + +[fan] +pin: PB18 + +#[heater_fan extruder_cooler_fan] +#pin: PB17 + +[mcu] +serial: /dev/ttyACM0 + +[printer] +kinematics: cartesian +max_velocity: 300 +max_accel: 3000 +max_z_velocity: 5 +max_z_accel: 100 |