-
Notifications
You must be signed in to change notification settings - Fork 2
/
printer_BTT_SKRat.cfg
866 lines (685 loc) · 29 KB
/
printer_BTT_SKRat.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
# https://github.com/Travis90x/Klipper-configuration/tree/main
# BIG TEXT ASCII http://patorjk.com/software/taag/#p=display&c=bash&f=ANSI%20Shadow&t=BED%20MESH
## ######################################
[gcode_macro SHOW_INFO]
gcode:
M118 {printer.heater_bed.min_temp}
[input_shaper]
shaper_freq_x: 88 # 85.7 # 54 85.7 # edit with your results
shaper_freq_y: 61 # 54 # 85.7
shaper_type_x: mzv
shaper_type_y: mzv
[output_pin relay]
PIN: PA2
value: 1
# [include °TMC_Stealth.cfg]
[include °TMC_Spread.cfg]
[include LED.cfg]
[include °START.cfg]
[include °ADV_MACRO.cfg]
[include timelapse.cfg] # Webcam timelapse
[include K-ShakeTune/*.cfg] # https://github.com/Frix-x/klippain-shaketune/tree/main
[include KAMP_Settings.cfg]
# ######################################
#
# ███╗ ███╗ ██████╗██╗ ██╗
# ████╗ ████║██╔════╝██║ ██║
# ██╔████╔██║██║ ██║ ██║
# ██║╚██╔╝██║██║ ██║ ██║
# ██║ ╚═╝ ██║╚██████╗╚██████╔╝
# ╚═╝ ╚═╝ ╚═════╝ ╚═════╝
#
# mcu
# ######################################
# This file contains common pin mappings for MKS Robin Nano (v1.2.004) boards. To use this config, the firmware should be compiled for the
# STM32F103. When running "make menuconfig", enable "extra low-level configuration setup", select the 28KiB bootloader, disable "USB for
# communication", and select USART3 for the "Serial Port".
# Note that the "make flash" command does not work with MKS Robin boards. After running "make", run the following command:
# ./scripts/update_mks_robin.py out/klipper.bin out/Robin_nano.bin
# Copy the file out/Robin_nano.bin to an SD card and then restart the printer with that SD card.
# See docs/Config_Reference.md for a description of parameters.
# KLIPPER CONFIG EXAMPLE
# https://github.com/Klipper3d/klipper/blob/master/docs/Config_Reference.md
[mcu]
# serial: /dev/ttyUSB0
# serial: /dev/serial/by-id/usb-1a86_USB_Serial-if00-port0
serial: /dev/serial/by-id/usb-Klipper_stm32g0b1xx_4000150012504B4633373520-if00
# serial: /dev/serial/by-id/usb-Klipper_stm32g0b1xx_btt-skrat-10-if00
# to find correct usb, in command type: sudo ls /dev/serial/by-id/*
restart_method: command
[temperature_sensor SKRat]
sensor_type: temperature_mcu
min_temp: 0
max_temp: 100
# ######################################
# STEPPERS
# ######################################
# ██╗ ██╗
# ╚██╗██╔╝
# ╚███╔╝
# ██╔██╗
# ██╔╝ ██╗
# ╚═╝ ╚═╝
[stepper_x]
step_pin: PF9
dir_pin: !PD7
enable_pin: !PD6
microsteps: 64
rotation_distance: 40
# endstop_pin: tmc2209_stepper_x:virtual_endstop # Sensorless homing
endstop_pin: ^PF5 # ^PB5 # Orange - add ! if physic endstop - physical/optical endstop
homing_speed: 100
homing_retract_dist: 10.0 # retract as optical probe is long from the complete collision
homing_retract_speed: 100 #
second_homing_speed: 5 # useful for optical
# homing_retract_dist: 0 # sensorless homing = 0
# 310x310 BED 0,0 is your 0,0
# Measure Screw 4 (coordinate 35,35) if nozzle on X is over
# increase position endstop. If under, decrease
################
position_endstop: 0
################
position_min: -2 # position_endstop - how many mm you can "press" the endstop
position_max: 310
# ██╗ ██╗
# ╚██╗ ██╔╝
# ╚████╔╝
# ╚██╔╝
# ██║
# ╚═╝
[stepper_y]
step_pin: PD3
dir_pin: !PD2
enable_pin: !PD5
microsteps: 64
rotation_distance: 40
# endstop_pin: tmc2209_stepper_y:virtual_endstop # Sensorless homing
endstop_pin: ^PC1 # Blue - add ! if physic endstop, remove if optical - physical/optical endstop
homing_speed: 100
homing_retract_dist: 10.0 # retract as optical probe is long from the complete collision
homing_retract_speed: 100 #
second_homing_speed: 5 # useful for optical
# 310x310 BED 0,0 is your 0,0
# Measure Screw 4 (coordinate 35,35) if nozzle on Y is over the screw
# increase position endstop. If under the screw, decrease.
################
position_endstop: 7.5
################
position_min: -1 # optical
position_max: 310 # position_endstop + how many mm you can "press" the endstop
# ███████╗
# ╚══███╔╝
# ███╔╝
# ███╔╝
# ███████╗
# ╚══════╝
[stepper_z]
step_pin: PA15
dir_pin: !PF8
enable_pin: !PC9
microsteps: 16
rotation_distance: 8
########################
# CHECK Z & Z1
########################
# IDM
# endstop_pin: probe:z_virtual_endstop # IDM # for Endstop Z with BL Touch
# homing_retract_dist: 0
########################
# IDM Endstop + IDM
endstop_pin: ^PC0 # Optical - ENABLE position_endstop # disable with BLtouch as endstop
#position_endstop: 321.179 # disable with bltouch as endstop
homing_retract_dist: 10.0 # retract as optical/physic probe is long
homing_retract_speed: 10 #
second_homing_speed: 2 # increase precision
########################
homing_speed: 30
# increase for nozzle far from bed at Z0
#(nozzle touch bed in negative value)
position_min: -1 # your 0-position_endstop
position_max: 330 # 330 with oldham and stepper lowered with thicknesses
# 320 with Pom anti backlash, oldham and stepper lowered with thicknesses
[safe_z_home]
home_xy_position: 155,155 # your X,Y axis center coordinates
z_hop: 2
# ███████╗ ██╗
# ╚══███╔╝███║
# ███╔╝ ╚██║
# ███╔╝ ██║
# ███████╗ ██║
# ╚══════╝ ╚═╝
[stepper_z1]
step_pin: PC7
dir_pin: !PC6
enable_pin: !PD9
microsteps: 16
rotation_distance: 8
########################
# CHECK Z & Z1
########################
# IDM
# endstop_pin: probe:z_virtual_endstop # IDM
########################
# IDM Endstop + IDM
endstop_pin: ^PF4 # Optical
########################
# not supported on Z1:
# position_endstop:
# position_min: -1.5 # not supported on Z1
# position_max: 330 # not supported on Z1
# homing_speed: 15
# second_homing_speed:5
############################################################
#
# ███████╗██╗ ██╗████████╗██████╗ ██╗ ██╗██████╗ ███████╗██████╗
# ██╔════╝╚██╗██╔╝╚══██╔══╝██╔══██╗██║ ██║██╔══██╗██╔════╝██╔══██╗
# █████╗ ╚███╔╝ ██║ ██████╔╝██║ ██║██║ ██║█████╗ ██████╔╝
# ██╔══╝ ██╔██╗ ██║ ██╔══██╗██║ ██║██║ ██║██╔══╝ ██╔══██╗
# ███████╗██╔╝ ██╗ ██║ ██║ ██║╚██████╔╝██████╔╝███████╗██║ ██║
# ╚══════╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚══════╝╚═╝ ╚═╝
#
# EXTRUDER
############################################################
[extruder]
# invert direction !PB4 Nema17
step_pin: PB10
dir_pin: PE15
enable_pin: !PA8
microsteps: 16
# ROTATION DISTANCE = full steps per rotation (200) * microsteps / steps per mm / Gear ratio
# rotation_distance: 22.65 # diminuisci se sottoestrude -
# 23.3 = Sherpa Mini + Moon 14 8th
# rotation_distance: 22 # diminuisci se sottoestrude 20 25 -- 22.5 = 10cm microsteps: 32 microstep 32 -> 23 # microstep 64 -> 45
rotation_distance: 22.6 # Vz-Hextrudort-Low = 22 default https://it.aliexpress.com/item/1005004574888848.html
# rotation_distance: 22.65 # Libra mini
full_steps_per_rotation: 200 # 200 for 1.8 degree Motor - 400 for 0.9 deg # Default 200
gear_ratio: 50:10 # 50:17 for BMG clone extruder otherwise 3:1
# 50:8 Moon 8t # 50:10 Moon 10 tooths
# 50:8 8th and Sherpa Mini, Libra Mini, Vz-Hextrudort
nozzle_diameter: 0.400
filament_diameter: 1.750
#
max_extrude_only_distance: 1400.0
max_extrude_only_accel: 1700 # mm/s^2
max_extrude_only_velocity: 100.0 # G1 EX mm/s
# Maximum velocity (in mm/s) and acceleration (in mm/s^2) of the extruder motor for retractions and extrude-only moves
# max_extrude_only_velocity: 75 # SHERPA MINI
# max_extrude_only_accel: 1500 # SHERPA MINI
# https://github.com/Annex-Engineering/Sherpa_Mini-Extruder/blob/master/Klipper_Config_Block.txt
max_extrude_cross_section: 100.0 # The default is: 4x nozzle_diameter^2
heater_pin: PD12 # Default PC3
### Heater Sensor MAX31865 ###
sensor_type: MAX31865
sensor_pin: PA4 # CS SPI1_NSS MAX31865
spi_bus: spi1 # SCK PA5 - MISO PA6 - MOSI PA7
# spi_software_sclk_pin: PA5
# spi_software_miso_pin: PA6
# spi_software_mosi_pin: PA7
# rtd_use_50Hz_filter: True
#rtd_nominal_r: 1000
#rtd_reference_r: 4300
#rtd_num_of_wires: 2
# min_temp: -273.15
# max_temp: 9999999999
# spi_speed: 100000
# sensor_pin: PC1 # Black TH2 PC1 - Violet TH1 PC2
# sensor_type: PT1000
# pullup_resistor: 4700
# sensor_type: DYZE
# sensor_type: EPCOS 100K B57560G104F
# sensor_type: ATC Semitec 104GT-2 #stock
# sensor_type: ATC Semitec 104NT-4-R025H42G
# sensor_type: Generic 3950
# sensor_type: Honeywell 100K 135-104LAG-J01
# sensor_type: NTC 100K MGB18-104F39050L32
# sensor_type: SliceEngineering 450
# sensor_type: TDK NTCG104LH104JT1
# pullup_resistor: 4700
min_temp: 0.15 # min is -273.15 # debug
max_temp: 310 # 350 #
min_extrude_temp: 160.15 # 140 # min 5.15 # debug
####################
# PID EXTRUDER
####################
pwm_cycle_time: 0.02 # default 0.100 ### 0.1 = 10Hz, the max for SSR (mosfet supports more)
max_power: 1.0
smooth_time: 0.5 # default 1.0
# PT1000 + Dragon UHF + 50% Fan
# pid_kp = 25.008
# pid_ki = 1.684
# pid_kd = 92.843
# NF CRAZY VOL CO HF 70W 2x 4020 100%
# smooth 0.1 cycle_time: 0.02
#control: pid
#pid_kp: 44.661
#pid_ki: 5.838
#pid_kd: 85.415
# NF CRAZY VOL CO HF 70W 2x 4020 100%
# smooth 1.0 cycle_time: 0.1
# pid_kp: 18
# pid_ki: 1.3
# pid_kd: 62
# 10Hz NF CRAZY VOL CO HF 70W 2x 4020 100%
# pid_kp: 26.948
# pid_ki: 7.811
# pid_kd: 23.243
# NF CRAZY VOL CO HF 70W 2x 4020 50% pid_Kp=23.744 pid_Ki=11.307 pid_Kd=12.466
# NF CRAZY VOL CO HF 50W 2x 4020 100%
# pid_kp = 46.506
# pid_ki = 103.346
# pid_kd = 5.232
# control = pid
# PID EPCOS 100K B57560G104F
# pid_Kp: 30.425
# pid_Ki: 2.359
# pid_Kd: 98.120
#########################
pressure_advance: 0.05
# PLA 0.045 100mm/s
# PLA 0.08 40mm/s
# PETG
#########################
[tmc2209 extruder]
uart_pin: PB11 # NB extruder on 3rd Position to use same Fan of XY
# uart_address: 0
interpolate: False
run_current: 0.80 # 0.9 for stock motor nema 17 - 0.35 nema 14 sth17 or fysetc clone- 0.85 nema 14 STH20 or moons CSE14HRA1L410A-02
#run_current: 0.35 #per motore nema 14 STH17 o clone fysetc
#run_current: 0.85 #per motore nema 14 STH20 o moons
# hold_current: 0.85 # Disable for sensroless Homing - 0.85 for nema 14 STH20 or moons motor #0.35 for nema 14 STH17 or fysetc clone motor
sense_resistor: 0.110
stealthchop_threshold: 0
# [safe_z_home]
# z_hop: 3 # Move up
# z_hop_speed: 10
# home_xy_position: 0, 275 # stepper_y{position_max} # Change coordinates to the center of your print bed
# speed: 100
# ███╗ ███╗███████╗███████╗██╗ ██╗
# ████╗ ████║██╔════╝██╔════╝██║ ██║
# ██╔████╔██║█████╗ ███████╗███████║
# ██║╚██╔╝██║██╔══╝ ╚════██║██╔══██║
# ██║ ╚═╝ ██║███████╗███████║██║ ██║
# ╚═╝ ╚═╝╚══════╝╚══════╝╚═╝ ╚═╝
#
# SCREWS
# 1-----2
# | X |
# 4-----3
#activate_gcode:
#deactivate_gcode:
[bed_mesh]
probe_count: 20,20
speed: 300 # Speed XY
mesh_min: 35, 62 # IDM = 51 (35+27) - BL-Touch = 16 (35 - 19)
# X_mesh_min = X coordinate + Probe x_offset
# the result must be > Xmin position
# Y_mesh_min = Y coordinate + Probe y_offset
# the result must be > Ymin position
mesh_max: 275, 248 # 275, 275 if the BED 0,0 is your 0,0
# X= X_Bed_max - X_mesh_min (Ex: X_Bed_max 310, X_mesh_min=5 X = 305 )
# Y= Y_Bed_max - Y_mesh_min (Ex: Y bed 310, Y_mesh_min=35 X_mesh_max= 275 )
# Y< Ymax Printer limit - Y BLtouch offset
###################
horizontal_move_z: 2 # >z_offset probe - The Z coordinate the probe rises to prior to traveling between points.
# default 5
###################
fade_start: 1.0 # Default is 1.0
fade_end: 0.0 # Default is 0.0 # If wish enable fade, a value of 10.0 is recommended (>fade_start)
split_delta_z: .025 # Default .025
move_check_distance: 5.0 # Default 5
mesh_pps: 2,2 # 2, 2
algorithm: bicubic
bicubic_tension: .2
[z_tilt]
z_positions:
-15,155
325,155
points:
35,134 # 35, 150-(BProbe Y Offset)
275,134
# 35,311 35,71 275,71 275,311
speed: 300
horizontal_move_z: 3
retries: 5
retry_tolerance: 0.01 # >0
# SCREWS
# 1-----2
# | X |
# 4-----3
# 310x310 BED 0,0 is your 0,0
# Coordinate of Nozzle
[bed_screws]
screw1: 35, 275
screw1_name: fondo sx
screw2: 275, 275
screw2_name: fondo dx
screw3: 275, 35
screw3_name: avanti dx
screw4: 35, 35
screw4_name: avanti sx
probe_speed: 150
# if your 0,0 is the BED phisical limit of your printer with Diamond and enstop optical
# [bed_screws]
# screw1: 26, 265
# screw2: 266, 265
# screw3: 266, 25
# screw4: 26, 25
# Coordinate of Nozzle + Z Offset Probe
[screws_tilt_adjust]
screw1: 35, 250
screw1_name: fondo sx
screw2: 275, 250
screw2_name: fondo dx
screw3: 275, 10
screw3_name: avanti dx
screw4: 35, 10
screw4_name: avanti sx
speed: 200
horizontal_move_z: 2
screw_thread: CW-M4
#######################################
# ██████╗ ███████╗██████╗
# ██╔══██╗██╔════╝██╔══██╗
# ██████╔╝█████╗ ██║ ██║
# ██╔══██╗██╔══╝ ██║ ██║
# ██████╔╝███████╗██████╔╝
# ╚═════╝ ╚══════╝╚═════╝
# BED
#######################################
[heater_bed]
heater_pin: PD13 # Default PA0
pullup_resistor: 4700 # default 4700
smooth_time: 1.0 # default 1.0
max_power: 1.0 #default 1.0
pwm_cycle_time: 0.1 #default 0.1 (10Hz, tha max for SSR relay)
sensor_type: EPCOS 100K B57560G104F
# sensor_type: NTC 100K beta 3950
sensor_pin: PB2 # lateral
min_temp: -10.15 # min -273.15
max_temp: 150 # 130
# control: watermark
#control: pid
# Stock BED
# pid_Kp: 325.10
# pid_Ki: 63.35
# pid_Kd: 417.10
# AC BED
#pid_Kp: 48.731
#pid_Ki: 1.683
#pid_Kd: 352.688
#######################################
#
# ████████╗███████╗███╗ ███╗██████╗
# ╚══██╔══╝██╔════╝████╗ ████║██╔══██╗
# ██║ █████╗ ██╔████╔██║██████╔╝
# ██║ ██╔══╝ ██║╚██╔╝██║██╔═══╝
# ██║ ███████╗██║ ╚═╝ ██║██║
# ╚═╝ ╚══════╝╚═╝ ╚═╝╚═╝
# TEMPERATURES
#######################################
#######################################
#
# ███████╗ █████╗ ███╗ ██╗
# ██╔════╝██╔══██╗████╗ ██║
# █████╗ ███████║██╔██╗ ██║
# ██╔══╝ ██╔══██║██║╚██╗██║
# ██║ ██║ ██║██║ ╚████║
# ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═══╝
#
# FANS
#######################################
#FAN 3030 on Hotend
[heater_fan extruder]
heater: extruder
pin: PE11 # Default PB1
kick_start_time: 0.4
max_power: 1
off_below: 0.0
shutdown_speed: 1.0
cycle_time: 0.010
heater_temp: 65.0
fan_speed: 1
#tachometer_pin:
#tachometer_ppr: 2
#tachometer_poll_interval: 0.0015
#hardware_pwm: False
#enable_pin:
# FAN DUCTS
[fan_generic fan0]
pin: PE13
kick_start_time: 0.5
max_power: 1.0
off_below: 0
shutdown_speed: 0
# [multi_pin dual_fan_extruder]
# pins:PB1,PB2
[board_pins fan_tmc]
aliases:
fan_tmc_pin=PD15
[controller_fan driver_fan]
# Turn ON fan when a stepper/heater is ON
# if not declared, default is
# stepper: stepper_x, stepper_y, stepper_z, stepper_z1, ecc... , extruder
# heater: extruder
# Name of the config section defining the heater/stepper that this fan
# is associated with. If a comma separated list of heater/stepper names
# is provided here, then the fan will be enabled when any of the given
# heaters/steppers are enabled. The default heater is "extruder", the
# default stepper is all of them.
pin: fan_tmc_pin # pwm fan pin
max_power: 1
shutdown_speed: 1.0 # in soft pwm is allowed 1 or 0
kick_start_time: 0.1
off_below: 0.40
idle_speed: 0.7 # Fan speed when stepper/heater are off
idle_timeout: 1 # Turn off fan after x secondos from stepper/heater is off
# to exclude activation fan with extruder
# I find a workaround creating a fake sensor and heater on an free pin, so:
# [duplicate_pin_override] # needed to use only 1 not connected PIN for FAKE_HEATER
# pins: PC2
# [heater_generic fake_heater]
# sensor_type: PT1000 # Put here whatever sensor you want
# heater_pin: PC2 # use a not connected PIN
# sensor_pin: PC2 # use a not connected PIN
# gcode_id: 1
# min_temp: -273.15 # min -273.15
# max_temp: 9999
# control: watermark
# max_delta: 9999
# SENSOR TYPE not provided from Klipper
# you have to define 3 value of resistance/temperature, measure your temperature probe with a tester
# [thermistor DYZE]
# https://www.aliexpress.com/item/4000591370691.html
# https://docs.dyzedesign.com/hotends.html#klipper-firmware
# dyze500 clone
# temperature1: 60
# resistance1: 666000 #450000
# temperature2: 162
# resistance2: 22200
# temperature3: 280
# resistance3: 1555
##################################################################################
# ██████╗ ███████╗████████╗██████╗ █████╗ ██████╗████████╗██╗ ██████╗ ███╗ ██╗
# ██╔══██╗██╔════╝╚══██╔══╝██╔══██╗██╔══██╗██╔════╝╚══██╔══╝██║██╔═══██╗████╗ ██║
# ██████╔╝█████╗ ██║ ██████╔╝███████║██║ ██║ ██║██║ ██║██╔██╗ ██║
# ██╔══██╗██╔══╝ ██║ ██╔══██╗██╔══██║██║ ██║ ██║██║ ██║██║╚██╗██║
# ██║ ██║███████╗ ██║ ██║ ██║██║ ██║╚██████╗ ██║ ██║╚██████╔╝██║ ╚████║
# ╚═╝ ╚═╝╚══════╝ ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝
#
# RETRACTION
##################################################################################
[firmware_retraction]
retract_length: 0.5 # default 0 mm
# The length of filament (in mm) to retract when G10 is activated, and to unretract when G11 is activated (but see unretract_extra_length below).
retract_speed: 35 # default is 20 mm/s
# The speed of retraction, in mm/s.
#unretract_extra_length: 0
# The length (in mm) of *additional* filament to add when unretracting.
unretract_speed: 35 # default is 10 mm/s.
# The speed of unretraction, in mm/s. The default is 10 mm/s.
#######################################
#
# ██████╗ ██████╗ ██╗███╗ ██╗████████╗███████╗██████╗
# ██╔══██╗██╔══██╗██║████╗ ██║╚══██╔══╝██╔════╝██╔══██╗
# ██████╔╝██████╔╝██║██╔██╗ ██║ ██║ █████╗ ██████╔╝
# ██╔═══╝ ██╔══██╗██║██║╚██╗██║ ██║ ██╔══╝ ██╔══██╗
# ██║ ██║ ██║██║██║ ╚████║ ██║ ███████╗██║ ██║
# ╚═╝ ╚═╝ ╚═╝╚═╝╚═╝ ╚═══╝ ╚═╝ ╚══════╝╚═╝ ╚═╝
#
# PRINTER
#######################################
[printer]
kinematics: corexy
#♥ kinematics: limited_corexy
# https://github.com/Piezoid/klipper/blob/work-peraxis/klippy/kinematics/limited_corexy.py
max_velocity: 700
# max_x_velocity: 250 # only on limited_cartesian.py
# max_y_velocity: 20
max_accel: 20000
# max_accel_to_decel: 8000 # DEPRECATED
minimum_cruise_ratio: 0.5
# max_x_accel: 8000 # limited_corexy
# max_y_accel: 6000 # limited_corexy
max_z_velocity: 40
max_z_accel: 50
square_corner_velocity: 5
[idle_timeout]
timeout: 1800
gcode:
SET_HEATER_TEMPERATURE HEATER=extruder TARGET=0
[exclude_object]
### to enalbe M117
[display_status]
### to enable M118
[respond]
#default_type: echo
# Sets the default prefix of the "M118" and "RESPOND" output to one
# of the following:
# echo: "echo: " (This is the default)
# command: "// "
# error: "!! "
default_prefix:
# Directly sets the default prefix. If present, this value will
# override the "default_type".
[pause_resume]
[gcode_arcs]
resolution: 0.5
[force_move]
enable_force_move: True
[save_variables]
filename: /home/pi/printer_data/config/save_variables.cfg # needed for Power Loss Recovery plr.cfg
# filename: ~/variable.cfg # needed for Power Loss Recovery plr.cfg
# filename: /home/pi/printer_data/config/printer_variables.cfg
# filename: /home/pi/klipper_config/.variables.stb
# [stepper_z]
# position_endstop = 321.179 # DIMINUIRE SE TROPPO VICINO
[idm model default]
# [idm model default]
# model_offset = 0.44 # PEI LISCIO # AUMENTA SE TROPPO VICINO
# model_offset = 0.1 # PEI RUVIDO
# ATTENTION: if parameters in SAVE CONFIG was't found by Klipper, check in the code before '#*#' and delete
#*# <---------------------- SAVE_CONFIG ---------------------->
#*# DO NOT EDIT THIS BLOCK OR BELOW. The contents are auto-generated.
#*#
#*# [stepper_z]
#*# position_endstop = 322.079
#*#
#*# [extruder]
#*# control = pid
#*# pid_kp = 25.008
#*# pid_ki = 1.684
#*# pid_kd = 92.843
#*#
#*# [heater_bed]
#*# control = pid
#*# pid_kp = 58.197
#*# pid_ki = 2.752
#*# pid_kd = 307.718
#*#
#*# [bed_mesh hot]
#*# version = 1
#*# points =
#*# 0.172500, 0.180833, 0.180000, 0.151667, 0.151667
#*# 0.175000, 0.166667, 0.176667, 0.155833, 0.128333
#*# 0.218333, 0.225000, 0.190000, 0.194167, 0.099167
#*# 0.219167, 0.216667, 0.205833, 0.157500, 0.134167
#*# 0.121667, 0.171667, 0.160833, 0.145833, 0.099167
#*# x_count = 5
#*# y_count = 5
#*# mesh_x_pps = 2
#*# mesh_y_pps = 2
#*# algo = bicubic
#*# tension = 0.2
#*# min_x = 35.0
#*# max_x = 275.0
#*# min_y = 19.0
#*# max_y = 256.0
#*#
#*# [bed_mesh Vetro_Hot]
#*# version = 1
#*# points =
#*# -0.131667, -0.116667, -0.107500, -0.114167, -0.110000
#*# -0.094167, -0.089167, -0.088333, -0.108333, -0.116667
#*# -0.076667, -0.071667, -0.079167, -0.101667, -0.116667
#*# -0.081667, -0.074167, -0.076667, -0.100833, -0.122500
#*# -0.099167, -0.086667, -0.086667, -0.107500, -0.129167
#*# x_count = 5
#*# y_count = 5
#*# mesh_x_pps = 2
#*# mesh_y_pps = 2
#*# algo = bicubic
#*# tension = 0.2
#*# min_x = 35.0
#*# max_x = 275.0
#*# min_y = 19.0
#*# max_y = 256.0
#*#
#*# [bed_mesh default]
#*# version = 1
#*# points =
#*# -0.130345, -0.107744, -0.078531, -0.055524, -0.030904, -0.005906, 0.011091, 0.023920, 0.034116, 0.045773, 0.058034, 0.070589, 0.075389, 0.092785, 0.112730, 0.111547, 0.097385, 0.084297, 0.074307, 0.050038
#*# -0.123327, -0.097507, -0.069563, -0.046591, -0.022721, 0.003776, 0.017615, 0.027893, 0.039074, 0.050177, 0.063417, 0.077418, 0.080617, 0.095796, 0.110741, 0.103393, 0.082476, 0.062771, 0.050343, 0.033583
#*# -0.116334, -0.089128, -0.063160, -0.037472, -0.011060, 0.010224, 0.022244, 0.032829, 0.039189, 0.056683, 0.070102, 0.083844, 0.082158, 0.093066, 0.098444, 0.086570, 0.072958, 0.052178, 0.038321, 0.025783
#*# -0.105005, -0.077964, -0.049679, -0.023959, 0.004477, 0.023879, 0.033681, 0.040995, 0.048887, 0.063626, 0.076057, 0.083583, 0.081978, 0.084266, 0.080175, 0.072828, 0.060811, 0.045862, 0.037267, 0.023153
#*# -0.092685, -0.064737, -0.037540, -0.009861, 0.014964, 0.035729, 0.044548, 0.047625, 0.056424, 0.070502, 0.081766, 0.088472, 0.083362, 0.079011, 0.070782, 0.064106, 0.056985, 0.044020, 0.036958, 0.024354
#*# -0.072584, -0.047423, -0.021468, 0.004502, 0.031745, 0.048764, 0.060258, 0.063505, 0.067504, 0.077593, 0.087852, 0.094926, 0.087869, 0.080633, 0.072071, 0.063061, 0.055137, 0.043879, 0.035360, 0.020836
#*# -0.057478, -0.031716, -0.008041, 0.016604, 0.043576, 0.063688, 0.073161, 0.079542, 0.082216, 0.088320, 0.095804, 0.100847, 0.093112, 0.085307, 0.078109, 0.068706, 0.059260, 0.043355, 0.033234, 0.020543
#*# -0.039565, -0.017043, 0.007547, 0.032413, 0.058453, 0.078046, 0.089043, 0.095322, 0.098574, 0.106416, 0.110159, 0.111641, 0.105927, 0.098220, 0.089221, 0.076694, 0.065770, 0.047553, 0.032531, 0.019300
#*# -0.027320, -0.003962, 0.025336, 0.047854, 0.070083, 0.089650, 0.101888, 0.109310, 0.113672, 0.124800, 0.126766, 0.133738, 0.126993, 0.116131, 0.103436, 0.087328, 0.074010, 0.048890, 0.032684, 0.018807
#*# -0.016205, 0.007057, 0.036204, 0.058224, 0.079611, 0.094810, 0.106518, 0.117908, 0.123115, 0.140305, 0.154646, 0.162339, 0.152994, 0.135570, 0.115511, 0.092542, 0.076251, 0.051146, 0.029428, 0.014303
#*# -0.011300, 0.012886, 0.040330, 0.064675, 0.084717, 0.098898, 0.109146, 0.118144, 0.127770, 0.153357, 0.187485, 0.200131, 0.181524, 0.153994, 0.126282, 0.092269, 0.070967, 0.045034, 0.025692, 0.007017
#*# -0.009584, 0.014784, 0.042949, 0.063265, 0.081836, 0.098377, 0.105740, 0.110395, 0.131030, 0.166960, 0.215615, 0.242321, 0.214088, 0.166119, 0.124903, 0.084109, 0.056837, 0.030862, 0.012533, -0.006573
#*# -0.009207, 0.012623, 0.036656, 0.057658, 0.078737, 0.094878, 0.100242, 0.104851, 0.125907, 0.172310, 0.240719, 0.285957, 0.248626, 0.175906, 0.118001, 0.073411, 0.044195, 0.021018, 0.006132, -0.015473
#*# -0.008447, 0.013412, 0.036543, 0.055614, 0.078957, 0.095535, 0.098770, 0.105008, 0.126838, 0.175278, 0.253682, 0.301278, 0.257852, 0.176834, 0.104900, 0.058933, 0.034024, 0.012876, -0.003106, -0.027416
#*# -0.006640, 0.012292, 0.034505, 0.053656, 0.077644, 0.093704, 0.098981, 0.106766, 0.123099, 0.164860, 0.231459, 0.270143, 0.228010, 0.160380, 0.095900, 0.049284, 0.026983, 0.006645, -0.013552, -0.040028
#*# -0.008387, 0.009594, 0.033678, 0.052445, 0.074589, 0.091758, 0.100200, 0.104756, 0.115394, 0.143752, 0.187066, 0.208004, 0.177985, 0.126887, 0.078000, 0.038081, 0.020867, -0.004565, -0.025668, -0.050021
#*# -0.010037, 0.008985, 0.032107, 0.049200, 0.067372, 0.087206, 0.097292, 0.099947, 0.102364, 0.118140, 0.141339, 0.151052, 0.129688, 0.093444, 0.059816, 0.030560, 0.012745, -0.012845, -0.037614, -0.060128
#*# -0.011785, 0.006561, 0.030547, 0.045731, 0.062678, 0.080757, 0.088782, 0.088990, 0.086880, 0.096237, 0.104946, 0.108233, 0.089506, 0.069377, 0.046406, 0.020952, -0.000982, -0.026583, -0.051957, -0.072966
#*# -0.020689, -0.000954, 0.021504, 0.035641, 0.053868, 0.069765, 0.076499, 0.077102, 0.072112, 0.075487, 0.078806, 0.078361, 0.064417, 0.050219, 0.033646, 0.005460, -0.013808, -0.041478, -0.066632, -0.091428
#*# -0.029162, -0.011839, 0.007989, 0.024578, 0.041068, 0.057526, 0.062456, 0.062817, 0.056616, 0.056108, 0.056029, 0.054656, 0.043757, 0.030262, 0.014511, -0.011890, -0.035510, -0.061798, -0.086140, -0.116063
#*# x_count = 20
#*# y_count = 20
#*# mesh_x_pps = 2
#*# mesh_y_pps = 2
#*# algo = bicubic
#*# tension = 0.2
#*# min_x = 35.19999999999999
#*# max_x = 274.8
#*# min_y = 62.0
#*# max_y = 248.0
#*#
#*# [idm model default]
#*# model_coef = 1.4703477060553216,
#*# 1.8994384054270845,
#*# 0.7607123311272843,
#*# 0.38709079174647415,
#*# 0.3560943685665672,
#*# 0.15372968793356906,
#*# -0.2702771569632841,
#*# -0.07488259859662195,
#*# 0.23578302461874245,
#*# 0.08837599189034598
#*# model_domain = 3.295424597734055e-07,3.363650151303122e-07
#*# model_range = 0.100000,5.000000
#*# model_temp = 26.082772
#*# model_offset = 0.1