Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/examples/FlashForge/CreatorPro/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -3559,7 +3559,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
Expand Down
2 changes: 2 additions & 0 deletions config/examples/FlashForge/CreatorPro/Configuration_adv.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
17 changes: 9 additions & 8 deletions config/examples/FlashForge/CreatorPro/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
```

Expand All @@ -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
```

Expand Down