Update Klipper with Fluidd.
This commit is contained in:
28
3dprinter-klipper/rootfs/etc/klipper/config/moonraker.conf
Normal file
28
3dprinter-klipper/rootfs/etc/klipper/config/moonraker.conf
Normal file
@@ -0,0 +1,28 @@
|
||||
[server]
|
||||
host: 0.0.0.0
|
||||
port: 7125
|
||||
|
||||
[authorization]
|
||||
# force_logins: false
|
||||
cors_domains:
|
||||
*
|
||||
trusted_clients:
|
||||
10.0.0.0/8
|
||||
127.0.0.0/8
|
||||
169.254.0.0/16
|
||||
172.16.0.0/12
|
||||
192.168.0.0/16
|
||||
FE80::/10
|
||||
::1/128
|
||||
|
||||
[machine]
|
||||
provider: none
|
||||
validate_service: False
|
||||
|
||||
[update_manager]
|
||||
enable_system_updates: False
|
||||
|
||||
[update_manager fluidd]
|
||||
type: web
|
||||
repo: fluidd-core/fluidd
|
||||
path: /config/src/fluidd
|
||||
3
3dprinter-klipper/rootfs/etc/klipper/config/printer.cfg
Normal file
3
3dprinter-klipper/rootfs/etc/klipper/config/printer.cfg
Normal file
@@ -0,0 +1,3 @@
|
||||
[include templates/fluidd.cfg]
|
||||
# [include templates/host_mcu.cfg]
|
||||
# [include templates/generic_simulavr.cfg]
|
||||
@@ -0,0 +1,13 @@
|
||||
[virtual_sdcard]
|
||||
path: /config/moonraker/gcodes
|
||||
|
||||
[pause_resume]
|
||||
|
||||
[display_status]
|
||||
|
||||
[gcode_macro CANCEL_PRINT]
|
||||
description: Cancel the actual running print
|
||||
rename_existing: CANCEL_PRINT_BASE
|
||||
gcode:
|
||||
TURN_OFF_HEATERS
|
||||
CANCEL_PRINT_BASE
|
||||
@@ -0,0 +1,84 @@
|
||||
# This file contains example pin mappings for testing with the
|
||||
# "simulavr" program. To use this config, compile the firmware for an
|
||||
# AVR atmega644p, enable "low-level configuration options", and enable
|
||||
# "simulavr software emulation". Further details are in
|
||||
# docs/Debugging.md.
|
||||
|
||||
# See docs/Config_Reference.md for a description of parameters.
|
||||
|
||||
[stepper_x]
|
||||
# Pins: PA5, PA4, PA1
|
||||
step_pin: PA5
|
||||
dir_pin: PA4
|
||||
enable_pin: PA1
|
||||
microsteps: 16
|
||||
rotation_distance: 40
|
||||
endstop_pin: ^PB0
|
||||
position_min: -0.25
|
||||
position_endstop: 0
|
||||
position_max: 200
|
||||
|
||||
[stepper_y]
|
||||
# Pins: PA3, PA2
|
||||
step_pin: PA3
|
||||
dir_pin: PA2
|
||||
enable_pin: PA1
|
||||
microsteps: 16
|
||||
rotation_distance: 40
|
||||
endstop_pin: ^PB1
|
||||
position_min: -0.25
|
||||
position_endstop: 0
|
||||
position_max: 200
|
||||
|
||||
[stepper_z]
|
||||
# Pins: PC7, PC6
|
||||
step_pin: PC7
|
||||
dir_pin: PC6
|
||||
enable_pin: PA1
|
||||
microsteps: 16
|
||||
rotation_distance: 8
|
||||
endstop_pin: ^PB2
|
||||
position_min: 0.1
|
||||
position_endstop: 0.5
|
||||
position_max: 200
|
||||
|
||||
[extruder]
|
||||
# Pins: PC3, PC2
|
||||
step_pin: PC3
|
||||
dir_pin: PC2
|
||||
enable_pin: PA1
|
||||
microsteps: 16
|
||||
rotation_distance: 33.500
|
||||
nozzle_diameter: 0.500
|
||||
filament_diameter: 3.500
|
||||
heater_pin: PB4
|
||||
sensor_type: EPCOS 100K B57560G104F
|
||||
sensor_pin: PA7
|
||||
control: pid
|
||||
pid_Kp: 22.2
|
||||
pid_Ki: 1.08
|
||||
pid_Kd: 114
|
||||
min_temp: 0
|
||||
min_extrude_temp: 0
|
||||
max_temp: 210
|
||||
|
||||
[heater_bed]
|
||||
heater_pin: PB3
|
||||
sensor_type: EPCOS 100K B57560G104F
|
||||
sensor_pin: PA0
|
||||
control: watermark
|
||||
min_temp: 0
|
||||
max_temp: 110
|
||||
|
||||
[fan]
|
||||
pin: PD6
|
||||
|
||||
[mcu]
|
||||
serial: /tmp/pseudoserial
|
||||
|
||||
[printer]
|
||||
kinematics: cartesian
|
||||
max_velocity: 500
|
||||
max_accel: 3000
|
||||
max_z_velocity: 250
|
||||
max_z_accel: 30
|
||||
@@ -0,0 +1,2 @@
|
||||
[mcu host]
|
||||
serial: /tmp/klipper_host_mcu
|
||||
Reference in New Issue
Block a user