mirror of
https://github.com/MarlinFirmware/Configurations.git
synced 2025-08-08 14:34:07 -06:00
🚸 Enable FlashForge Creator Pro turbo fan (#1131)
This commit is contained in:
parent
8839c3bced
commit
da156cbfa0
3 changed files with 12 additions and 9 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
```
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue