aboutsummaryrefslogtreecommitdiffstats
path: root/config/generic-melzi.cfg
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2017-10-12 12:43:13 -0400
committerKevin O'Connor <kevin@koconnor.net>2017-10-12 12:43:13 -0400
commit3033b037893332b1175dfc1ed99bdeab50710e00 (patch)
treec065644b965fcca56cafd6ae3c82a257fc43eaa1 /config/generic-melzi.cfg
parent3506d1e994f1952fa8de3167f7abb1e82e17f5ef (diff)
downloadkutter-3033b037893332b1175dfc1ed99bdeab50710e00.tar.gz
kutter-3033b037893332b1175dfc1ed99bdeab50710e00.tar.xz
kutter-3033b037893332b1175dfc1ed99bdeab50710e00.zip
config: Add generic-melzi.cfg file for Melzi boards
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'config/generic-melzi.cfg')
-rw-r--r--config/generic-melzi.cfg76
1 files changed, 76 insertions, 0 deletions
diff --git a/config/generic-melzi.cfg b/config/generic-melzi.cfg
new file mode 100644
index 00000000..449f966d
--- /dev/null
+++ b/config/generic-melzi.cfg
@@ -0,0 +1,76 @@
+# This file contains common pin mappings for Melzi v2.0 boards. To use
+# this config, the firmware should be compiled for the AVR
+# atmega1284p.
+
+# Note that the "make flash" command does not work with Melzi
+# boards. The boards are typically flashed with this command:
+# avrdude -p atmega1284p -c avrisp -P /dev/ttyUSB0 -U flash:w:out/klipper.elf.hex
+
+# See the example.cfg file for a description of available parameters.
+
+[stepper_x]
+step_pin: PD7
+dir_pin: PC5
+enable_pin: !PD6
+step_distance: .0125
+endstop_pin: ^!PC2
+position_endstop: 0
+position_max: 200
+homing_speed: 50
+
+[stepper_y]
+step_pin: PC6
+dir_pin: PC7
+enable_pin: !PD6
+step_distance: .0125
+endstop_pin: ^!PC3
+position_endstop: 0
+position_max: 200
+homing_speed: 50
+
+[stepper_z]
+step_pin: PB3
+dir_pin: !PB2
+enable_pin: !PA5
+step_distance: 0.00025
+endstop_pin: ^!PC4
+position_endstop: 0.5
+position_max: 200
+
+[extruder]
+step_pin: PB1
+dir_pin: PB0
+enable_pin: !PD6
+step_distance: .002
+nozzle_diameter: 0.400
+filament_diameter: 1.750
+heater_pin: PD5
+sensor_type: EPCOS 100K B57560G104F
+sensor_pin: PA7
+control: pid
+pid_Kp: 22.2
+pid_Ki: 1.08
+pid_Kd: 114
+min_temp: 0
+max_temp: 250
+
+[heater_bed]
+heater_pin: PD2
+sensor_type: EPCOS 100K B57560G104F
+sensor_pin: PA6
+control: watermark
+min_temp: 0
+max_temp: 130
+
+[fan]
+pin: PB4
+
+[mcu]
+serial: /dev/ttyUSB0
+
+[printer]
+kinematics: cartesian
+max_velocity: 300
+max_accel: 3000
+max_z_velocity: 5
+max_z_accel: 100