Most pins tested
This commit is contained in:
parent
4df7e1f100
commit
c83d605f97
3 changed files with 21 additions and 15 deletions
11
fans.cfg
11
fans.cfg
|
@ -20,8 +20,9 @@ heater_temp: 50.0
|
|||
## If you are experiencing back flow, you can reduce fan_speed
|
||||
#fan_speed: 1.0
|
||||
|
||||
#[controller_fan controller_fan]
|
||||
## Controller fan - FAN2
|
||||
#pin: PBE5
|
||||
#kick_start_time: 0.5
|
||||
#heater: heater_bed
|
||||
[output_pin TOOLHEAD_LED]
|
||||
pin: PE5
|
||||
pwm: True
|
||||
shutdown_value: 0
|
||||
hardware_pwm: True
|
||||
cycle_time: 0.001
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
[server]
|
||||
host: 0.0.0.0
|
||||
port: 7125
|
||||
klippy_uds_address: /home/kdb424/printer_data/comms/klippy.sock
|
||||
|
||||
[file_manager]
|
||||
enable_object_processing: True
|
||||
|
|
24
steppers.cfg
24
steppers.cfg
|
@ -8,7 +8,7 @@
|
|||
step_pin: PC9
|
||||
dir_pin: PC8
|
||||
enable_pin: !PD1
|
||||
endstop_pin: ^PC1
|
||||
endstop_pin: tmc2209_stepper_x:virtual_endstop
|
||||
rotation_distance: 32
|
||||
microsteps: 32
|
||||
full_steps_per_rotation:200
|
||||
|
@ -16,7 +16,6 @@ position_min: 0
|
|||
position_endstop: 180
|
||||
position_max: 180
|
||||
homing_positive_dir: true
|
||||
homing_retract_dist: 5
|
||||
homing_speed: 50 #Max 100
|
||||
|
||||
[tmc2209 stepper_x]
|
||||
|
@ -25,13 +24,16 @@ interpolate: false
|
|||
run_current: 0.6
|
||||
stealthchop_threshold: 0
|
||||
|
||||
diag_pin: ^PC1
|
||||
driver_SGTHRS: 100 # 255 is most sensitive value, 0 is least sensitive
|
||||
|
||||
## A Stepper - Right
|
||||
## Connected to MOTOR_6
|
||||
[stepper_y]
|
||||
step_pin: PA10
|
||||
dir_pin: PA14
|
||||
enable_pin: !PA15
|
||||
endstop_pin: ^PC2
|
||||
endstop_pin: tmc2209_stepper_y:virtual_endstop
|
||||
rotation_distance: 32
|
||||
microsteps: 32
|
||||
full_steps_per_rotation:200
|
||||
|
@ -39,7 +41,6 @@ position_min: 0
|
|||
position_endstop: 190
|
||||
position_max: 190
|
||||
homing_positive_dir: true
|
||||
homing_retract_dist: 5
|
||||
homing_speed: 50 #Max 100
|
||||
|
||||
[tmc2209 stepper_y]
|
||||
|
@ -48,6 +49,9 @@ interpolate: false
|
|||
run_current: 0.6
|
||||
stealthchop_threshold: 0
|
||||
|
||||
diag_pin: ^PC2
|
||||
driver_SGTHRS: 100 # 255 is most sensitive value, 0 is least sensitive
|
||||
|
||||
|
||||
#####################################################################
|
||||
# Z Stepper Settings
|
||||
|
@ -57,12 +61,12 @@ stealthchop_threshold: 0
|
|||
## Connected to MOTOR_1
|
||||
[stepper_z]
|
||||
step_pin: PE2
|
||||
dir_pin: !PB4
|
||||
dir_pin: PB4
|
||||
enable_pin: !PC11
|
||||
rotation_distance: 32
|
||||
gear_ratio: 64:16
|
||||
microsteps: 32
|
||||
endstop_pin: ^PF3
|
||||
endstop_pin: !PF6
|
||||
## Z-position of nozzle (in mm) to z-endstop trigger point relative to print surface (Z0)
|
||||
## (+) value = endstop above Z0, (-) value = endstop below
|
||||
## Increasing position_endstop brings nozzle closer to the bed
|
||||
|
@ -84,7 +88,7 @@ stealthchop_threshold: 0
|
|||
## Connected to MOTOR_2
|
||||
[stepper_z1]
|
||||
step_pin: PF12
|
||||
dir_pin: PF11
|
||||
dir_pin: !PF11
|
||||
enable_pin: !PB3
|
||||
rotation_distance: 32
|
||||
gear_ratio: 64:16
|
||||
|
@ -100,7 +104,7 @@ stealthchop_threshold: 0
|
|||
## Connected to MOTOR_3
|
||||
[stepper_z2]
|
||||
step_pin: PD7
|
||||
dir_pin: !PD6
|
||||
dir_pin: PD6
|
||||
enable_pin: !PF10
|
||||
rotation_distance: 32
|
||||
gear_ratio: 64:16
|
||||
|
@ -117,7 +121,7 @@ stealthchop_threshold: 0
|
|||
## Connected to MOTOR_4
|
||||
[stepper_z3]
|
||||
step_pin: PD3
|
||||
dir_pin: PD2
|
||||
dir_pin: !PD2
|
||||
enable_pin: !PD5
|
||||
rotation_distance: 32
|
||||
gear_ratio: 64:16
|
||||
|
@ -152,7 +156,7 @@ microsteps: 32
|
|||
full_steps_per_rotation: 200 #200 for 1.8 degree, 400 for 0.9 degree
|
||||
nozzle_diameter: 0.400
|
||||
filament_diameter: 1.75
|
||||
heater_pin: PA3
|
||||
heater_pin: PE3
|
||||
## Check what thermistor type you have. See https://www.klipper3d.org/Config_Reference.html#common-thermistors for common thermistor types.
|
||||
## Use "Generic 3950" for NTC 100k 3950 thermistors
|
||||
sensor_type: PT1000
|
||||
|
|
Loading…
Add table
Reference in a new issue