Browse Source

Update Anet A8 default values from my Anet A8 experience

Steven Gotthardt 6 years ago
parent
commit
7efffc1548
1 changed files with 5 additions and 3 deletions
  1. 5
    3
      Marlin/example_configurations/Anet/A8/Configuration.h

+ 5
- 3
Marlin/example_configurations/Anet/A8/Configuration.h View File

@@ -137,7 +137,8 @@
137 137
 #define EXTRUDERS 1
138 138
 
139 139
 // Generally expected filament diameter (1.75, 2.85, 3.0, ...). Used for Volumetric, Filament Width Sensor, etc.
140
-#define DEFAULT_NOMINAL_FILAMENT_DIA 3.0
140
+// The Anet A8 original extruder is designed for 1.75mm
141
+#define DEFAULT_NOMINAL_FILAMENT_DIA 1.75
141 142
 
142 143
 // For Cyclops or any "multi-extruder" that shares a single nozzle.
143 144
 //#define SINGLENOZZLE
@@ -424,8 +425,9 @@
424 425
 // It also enables the M302 command to set the minimum extrusion temperature
425 426
 // or to allow moving the extruder regardless of the hotend temperature.
426 427
 // *** IT IS HIGHLY RECOMMENDED TO LEAVE THIS OPTION ENABLED! ***
428
+// A temp of 160 guards against false tripping when the extruder fan kicks on.
427 429
 #define PREVENT_COLD_EXTRUSION
428
-#define EXTRUDE_MINTEMP 170
430
+#define EXTRUDE_MINTEMP 160
429 431
 
430 432
 // This option prevents a single extrusion longer than EXTRUDE_MAXLENGTH.
431 433
 // Note that for Bowden Extruders a too-small value here may prevent loading.
@@ -535,7 +537,7 @@
535 537
  * Override with M92
536 538
  *                                      X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]]
537 539
  */
538
-#define DEFAULT_AXIS_STEPS_PER_UNIT   { 100, 100, 400, 95 }
540
+#define DEFAULT_AXIS_STEPS_PER_UNIT   { 100, 100, 400, 100 }
539 541
 
540 542
 /**
541 543
  * Default Max Feed Rate (mm/s)

Loading…
Cancel
Save