10 Commits

Author SHA1 Message Date
QIDI TECH
6183600721 Merge pull request #89 from aidan-gibson/main
typo fix
2024-09-23 09:24:29 +08:00
Aidan Gibson
8671663078 typo fix 2024-09-22 03:18:01 -07:00
QIDI TECH
f461ffb35a Merge pull request #81 from QIDITECH/V4.4.24
V4.4.24
2024-09-02 10:24:50 +08:00
whb0514
aa71fa8d48 update V4.4.24 2024-09-02 10:11:38 +08:00
whb0514
1928cac53f Update README.md 2024-09-02 10:08:43 +08:00
CChen616
efeeec8ab2 Merge pull request #70 from QIDITECH/V4.4.21
V4.4.21
2024-07-19 19:50:34 +08:00
CChen616
8aaa970c1a Update README.md 2024-07-19 19:40:22 +08:00
CChen616
a24c5dbe72 Merge pull request #58 from QIDITECH/V4.4.21
V4.4.21
2024-07-05 14:19:47 +08:00
CChen616
f5f79505f1 Merge pull request #22 from QIDITECH/V4.4.19
Update README.md
2024-05-03 10:04:41 +08:00
CChen616
16e6ad674b Merge pull request #21 from QIDITECH/V4.4.19
V4.4.19
2024-05-03 09:58:02 +08:00
5 changed files with 18 additions and 18 deletions

View File

@@ -7,21 +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.
5. Updated configuration file
4. Updated configuration files
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.
@@ -59,5 +56,5 @@ We extend our gratitude to the developers and maintainers of these open-source p
| Software |Official| QIDI edition |
| ------------- |----------| -------------------------------------------------------------------------------- |
| **Klipper** |**[https://github.com/Klipper3d/klipper](https://github.com/Klipper3d/klipper)**| **[https://github.com/QIDITECH/klipper](https://github.com/QIDITECH/klipper)** |
| **Moonraker** |**[https://github.com/Arksine/moonraker](https://github.com/Arksine/moonraker)**| **[https://github.com/QIDITECH/moonrake](https://github.com/QIDITECH/moonrake)** |
| **Moonraker** |**[https://github.com/Arksine/moonraker](https://github.com/Arksine/moonraker)**| **[https://github.com/QIDITECH/moonraker](https://github.com/QIDITECH/moonraker)** |
|**Fluidd**|**[https://github.com/fluidd-core/fluidd](https://github.com/fluidd-core/fluidd)**||

Binary file not shown.

Binary file not shown.

View File

@@ -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

View File

@@ -445,6 +445,8 @@ probe_points:
[idle_timeout]
timeout: 43200
gcode:
PRINT_END
[pause_resume]