🚸 Enable FlashForge Creator Pro turbo fan (#1131)

This commit is contained in:
Queen Vinyl Da.i'gyu-Kazotetsu 2025-03-09 14:44:03 -07:00 committed by GitHub
parent 8839c3bced
commit da156cbfa0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 12 additions and 9 deletions

View file

@ -3560,7 +3560,7 @@
// Set number of user-controlled fans. Disable to use all board-defined fans.
// :[1,2,3,4,5,6,7,8]
//#define NUM_M106_FANS 1
#define NUM_M106_FANS 1
// Use software PWM to drive the fan, as for the heaters. This uses a very low frequency
// which is not as annoying as with the hardware PWM. On the other hand, if this frequency

View file

@ -700,6 +700,8 @@
#define CHAMBER_AUTO_FAN_PIN -1
#define COOLER_AUTO_FAN_PIN -1
#define FAN0_PIN MOSFET_F_PIN
#define EXTRUDER_AUTO_FAN_TEMPERATURE 50
#define EXTRUDER_AUTO_FAN_SPEED 255 // 255 == full speed
#define CHAMBER_AUTO_FAN_TEMPERATURE 30

View file

@ -78,6 +78,7 @@ G1 E22 F3600
G0 X48 Y0 Z0.5 F1200 ; lift
G0 Y-10 ; Move nozzle off of build plate
G92 E0
M106 ; Start turbo fan
```
### After Print Job Completes
@ -91,14 +92,14 @@ M300 S1300 P200
M300 S880 P500
G10 ; Retract
G0 X270 Y150 Z150 F1500 ; send Z axis to bottom of machine
G0 X270 Y150 Z150 F1500 ; Send Z axis to bottom of machine
;disable all heaters
; Disable all heaters
{% snippet 'disable_hotends' %}
{% snippet 'disable_bed' %}
M127 ; stop blower fan
M18 ; disable stepper
M107 ; Stop turbo fan
M18 ; Disable stepper
G11
```
@ -112,14 +113,14 @@ M300 S660 P200
M300 S440 P200
G10 ; Retract
G0 X270 Y150 Z150 F1500 ; send Z axis to bottom of machine
G0 X270 Y150 Z150 F1500 ; Send Z axis to bottom of machine
;disable all heaters
; Disable all heaters
{% snippet 'disable_hotends' %}
{% snippet 'disable_bed' %}
M127 ; stop blower fan
M18 ; disable stepper
M127 ; Stop turbo fan
M18 ; Disable stepper
G11
```