Chamber temp + KAMP
This commit is contained in:
parent
f159ce7cb2
commit
8a6bfa5c20
|
@ -3,22 +3,19 @@ host = 0.0.0.0
|
|||
port = 7125
|
||||
klippy_uds_address = /home/biqu/printer_data/comms/klippy.sock
|
||||
|
||||
[file_manager]
|
||||
enable_object_processing = True
|
||||
|
||||
[authorization]
|
||||
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
|
||||
cors_domains =
|
||||
*.lan
|
||||
*.local
|
||||
*://localhost
|
||||
*://localhost:*
|
||||
*://my.mainsail.xyz
|
||||
*://app.fluidd.xyz
|
||||
|
||||
[octoprint_compat]
|
||||
|
||||
|
@ -28,6 +25,14 @@ cors_domains =
|
|||
channel = dev
|
||||
refresh_interval = 168
|
||||
|
||||
[update_manager Klipper-Adaptive-Meshing-Purging]
|
||||
type = git_repo
|
||||
channel = dev
|
||||
path = ~/Klipper-Adaptive-Meshing-Purging
|
||||
origin = https://github.com/kyleisah/Klipper-Adaptive-Meshing-Purging.git
|
||||
managed_services = klipper
|
||||
primary_branch = main
|
||||
|
||||
[update_manager mainsail-config]
|
||||
type = git_repo
|
||||
primary_branch = master
|
||||
|
|
|
@ -9,4 +9,9 @@
|
|||
#~# [main]
|
||||
#~# screen_blanking = 300
|
||||
#~# show_heater_power = True
|
||||
#~#
|
||||
#~# [graph Printer]
|
||||
#~# temperature_sensor mcu = False
|
||||
#~# heater_bed = False
|
||||
#~# extruder = False
|
||||
#~#
|
||||
|
|
|
@ -4,6 +4,13 @@ sensor_type: temperature_mcu
|
|||
[temperature_sensor SoC]
|
||||
sensor_type: temperature_host
|
||||
|
||||
[temperature_sensor chamber]
|
||||
sensor_type: Generic 3950
|
||||
sensor_pin: PB0
|
||||
min_temp: 0
|
||||
max_temp: 100
|
||||
gcode_id: chamber
|
||||
|
||||
#####################################################################
|
||||
# Bed Heater
|
||||
#####################################################################
|
||||
|
@ -45,6 +52,7 @@ min_temp: 15
|
|||
max_temp: 80
|
||||
target_temp: 50
|
||||
max_power: 0.5
|
||||
shutdown_speed: 0
|
||||
|
||||
#[heater_fan hotend_fan]
|
||||
## Hotend Fan - CNC_FAN1
|
||||
|
|
|
@ -15,7 +15,7 @@ endstop_pin: tmc2209_stepper_x:virtual_endstop
|
|||
position_min: 0
|
||||
position_endstop: 350
|
||||
position_max: 350
|
||||
homing_speed: 100 #Max 100
|
||||
homing_speed: 25 #Max 100
|
||||
homing_retract_dist: 5
|
||||
homing_positive_dir: true
|
||||
|
||||
|
@ -26,7 +26,7 @@ interpolate: True
|
|||
run_current: 0.8
|
||||
sense_resistor: 0.110
|
||||
stealthchop_threshold: 0
|
||||
driver_SGTHRS: 80
|
||||
driver_SGTHRS: 70
|
||||
diag_pin: PF4
|
||||
|
||||
## Y Stepper on Motor2 (A Motor)
|
||||
|
@ -43,7 +43,7 @@ position_endstop: 350
|
|||
position_max: 350
|
||||
|
||||
##--------------------------------------------------------------------
|
||||
homing_speed: 100 #Max 100
|
||||
homing_speed: 25 #Max 100
|
||||
homing_retract_dist: 5
|
||||
homing_positive_dir: true
|
||||
|
||||
|
@ -55,7 +55,7 @@ run_current: 0.8
|
|||
sense_resistor: 0.110
|
||||
stealthchop_threshold: 0
|
||||
diag_pin: PF3
|
||||
driver_SGTHRS: 80
|
||||
driver_SGTHRS: 60
|
||||
|
||||
#####################################################################
|
||||
# Z Stepper Settings
|
||||
|
|
|
@ -88,4 +88,4 @@ gcode:
|
|||
G0 Z0.4 # Raises Z to 0.4
|
||||
G91 # Incremental positioning
|
||||
G1 X100 E20 F1000 # Purge line
|
||||
G90 # Absolut position
|
||||
G90 # Absolut position
|
||||
|
|
Loading…
Reference in New Issue