aboutsummaryrefslogtreecommitdiffstats
path: root/config/printer-anet-a8-2017.cfg
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2018-02-11 14:47:12 -0500
committerKevin O'Connor <kevin@koconnor.net>2018-02-11 14:58:48 -0500
commit41f73d0c8c2e253331a8eed32d72cefc52e393da (patch)
treef8aa5ce1ea758f9a700097cebd90ae4eadfc1598 /config/printer-anet-a8-2017.cfg
parent08a1183a01ab84484e284e4f8dbb9427a5b614cf (diff)
downloadkutter-41f73d0c8c2e253331a8eed32d72cefc52e393da.tar.gz
kutter-41f73d0c8c2e253331a8eed32d72cefc52e393da.tar.xz
kutter-41f73d0c8c2e253331a8eed32d72cefc52e393da.zip
config: Add a "printer-" prefix to example printer config files
Add a prefix to the example printer config files so that a sorted directory listing shows all the samples bundled together. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'config/printer-anet-a8-2017.cfg')
-rw-r--r--config/printer-anet-a8-2017.cfg79
1 files changed, 79 insertions, 0 deletions
diff --git a/config/printer-anet-a8-2017.cfg b/config/printer-anet-a8-2017.cfg
new file mode 100644
index 00000000..8da6e905
--- /dev/null
+++ b/config/printer-anet-a8-2017.cfg
@@ -0,0 +1,79 @@
+# This file contains common pin mappings for Anet A8 printer from 2016
+# and 2017. To use this config, the firmware should be compiled for
+# the AVR atmega1284p.
+
+# Note that the "make flash" command does not work with Anet boards -
+# the boards are typically flashed with this command:
+# avrdude -p atmega1284p -c arduino -b 57600 -P /dev/ttyUSB0 -U 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: .01
+endstop_pin: ^!PC2
+position_endstop: -30
+position_max: 220
+position_min: -30
+homing_speed: 50
+
+[stepper_y]
+step_pin: PC6
+dir_pin: PC7
+enable_pin: !PD6
+step_distance: .01
+endstop_pin: ^!PC3
+position_endstop: -8
+position_min: -8
+position_max: 220
+homing_speed: 50
+
+[stepper_z]
+step_pin: PB3
+dir_pin: !PB2
+enable_pin: !PA5
+step_distance: 0.0025
+endstop_pin: ^!PC4
+position_endstop: 0.5
+position_max: 240
+homing_speed: 20
+
+[extruder]
+step_pin: PB1
+dir_pin: PB0
+enable_pin: !PD6
+step_distance: .0105
+nozzle_diameter: 0.400
+filament_diameter: 1.750
+heater_pin: PD5
+sensor_type: ATC Semitec 104GT-2
+sensor_pin: PA7
+control: pid
+pid_Kp: 2.151492
+pid_Ki: 0.633897
+pid_Kd: 230.042965
+min_temp: 0
+max_temp: 250
+
+[heater_bed]
+heater_pin: PD4
+sensor_type: ATC Semitec 104GT-2
+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: 1000
+max_z_velocity: 20
+max_z_accel: 100