mirror of
https://github.com/QIDITECH/QIDI_Q1_Pro.git
synced 2026-01-30 23:48:43 +03:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b534aef08f | ||
|
|
aa71fa8d48 | ||
|
|
1928cac53f |
17
README.md
17
README.md
@@ -7,25 +7,18 @@ Q1 Pro is a 3D printer that uses Klipper as its foundation. This repository is u
|
||||
|
||||
For convenience, QIDI provides version-specific packaged files. Please download the necessary compressed package file prefixed with "Q1_Pro." Select the appropriate branch for download, with each branch name reflecting the corresponding version.
|
||||
|
||||
## V4.4.21 Update Content
|
||||
## V4.4.24 Update Content
|
||||
|
||||
**Note:** After updating, the Klipper configuration file will be replaced. The previous configuration file will be backed up as `printer_{datetime}.cfg`, printer recalibration will be required.
|
||||
|
||||
1. Fixed slow response to filament break detection
|
||||
1. Update the QIDI-LINK connection method to make the connection more secure.
|
||||
|
||||
2. Fixed issue with configuration file not being backed up during update
|
||||
2. Added Fluidd account management module
|
||||
|
||||
3. Adjusted silent print switch position
|
||||
3. Fixed the issue of USB not being read on startup
|
||||
|
||||
4. Chamber light setting are no longer affected by the screen off state.
|
||||
4. Updated configuration files
|
||||
|
||||
5. Updated configuration file
|
||||
|
||||
Enable chamber exhaust fan by default when chamber temp set to 0. Board fan associated with x y motor drive instead of z axis.
|
||||
|
||||
We also addressed an issue where the display of connected WiFi names containing Unicode characters appeared blank, and this has been fixed.
|
||||
|
||||
**6.** Adjusted default parameters.
|
||||
|
||||
## Detailed update process
|
||||
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -163,12 +163,10 @@ gcode:
|
||||
{% set hotendtemp = params.HOTEND|int %}
|
||||
{% set chambertemp = params.CHAMBER|default(0)|int %}
|
||||
set_zoffset
|
||||
{% if chambertemp == 0 %}
|
||||
M106 P3 S255
|
||||
{% endif %}
|
||||
|
||||
M104 S0
|
||||
M140 S{bedtemp}
|
||||
M141 S{chambertemp}
|
||||
# M141 S{chambertemp}
|
||||
G28
|
||||
CLEAR_NOZZLE HOTEND={hotendtemp}
|
||||
|
||||
@@ -178,10 +176,13 @@ gcode:
|
||||
G0 Z50 F600
|
||||
G0 X0 Y0 F6000
|
||||
|
||||
M191 S{chambertemp}
|
||||
M109 S{hotendtemp}
|
||||
M204 S10000
|
||||
|
||||
M109 S{hotendtemp}
|
||||
M141 S{chambertemp}
|
||||
M204 S10000
|
||||
{% if chambertemp == 0 %}
|
||||
M106 P3 S255
|
||||
{% endif %}
|
||||
ENABLE_ALL_SENSOR
|
||||
save_last_file
|
||||
|
||||
@@ -661,7 +662,7 @@ gcode:
|
||||
G92 E0
|
||||
G1 E-90 F800
|
||||
M400
|
||||
M118 Unload finish
|
||||
M118 Filament unloaded
|
||||
|
||||
[gcode_macro M604]
|
||||
description: load filament
|
||||
@@ -670,7 +671,7 @@ gcode:
|
||||
M83
|
||||
G1 E80 F400
|
||||
M400
|
||||
M118 Load finish
|
||||
M118 Filament loaded
|
||||
|
||||
[output_pin sound]
|
||||
pin: gpio8
|
||||
|
||||
@@ -445,6 +445,8 @@ probe_points:
|
||||
|
||||
[idle_timeout]
|
||||
timeout: 43200
|
||||
gcode:
|
||||
PRINT_END
|
||||
|
||||
[pause_resume]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user