diff options
author | tilsonm <tilsonm@vt.edu> | 2018-01-07 17:51:56 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-01-07 22:22:08 -0500 |
commit | f183871e286dcb1341791ffcb51479c7969c2c5d (patch) | |
tree | 925973d56d6de13d70d07de69232cb917149c76d | |
parent | d891baa8606c6a7879a4c4baf87a004ca30d2ac8 (diff) | |
download | kutter-f183871e286dcb1341791ffcb51479c7969c2c5d.tar.gz kutter-f183871e286dcb1341791ffcb51479c7969c2c5d.tar.xz kutter-f183871e286dcb1341791ffcb51479c7969c2c5d.zip |
config: Adopt Anet A8 cfg, Anet v1.0-1.5 Boards
This configuration file should work as a base for Anet A8 printers
using the stock Anet v1.0-1.5 boards from late 2016-2017, which are
based around the AVR atmega1284p. Minor tweaks may be required to such
things as /dev/serial/by-id/, thermistor sensor types, and offsets for
carriage and bed.
Signed-off-by: Matt Tilson <tilsonm09@gmail.com>
-rw-r--r-- | config/anet-a8-2017.cfg | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/config/anet-a8-2017.cfg b/config/anet-a8-2017.cfg new file mode 100644 index 00000000..8da6e905 --- /dev/null +++ b/config/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 |