Browse Source

Merge pull request #8426 from SteveGotthardt/bugfixes

[1.1.x]Update Anet A8 default values from my Anet A8 experience
Scott Lahteine 7 years ago
parent
commit
b6dbc4c5c1
No account linked to committer's email address
1 changed files with 4 additions and 3 deletions
  1. 4
    3
      Marlin/example_configurations/Anet/A8/Configuration.h

+ 4
- 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
@@ -425,7 +426,7 @@
425 426
 // or to allow moving the extruder regardless of the hotend temperature.
426 427
 // *** IT IS HIGHLY RECOMMENDED TO LEAVE THIS OPTION ENABLED! ***
427 428
 #define PREVENT_COLD_EXTRUSION
428
-#define EXTRUDE_MINTEMP 170
429
+#define EXTRUDE_MINTEMP 160  // 160 guards against false tripping when the extruder fan kicks on.
429 430
 
430 431
 // This option prevents a single extrusion longer than EXTRUDE_MAXLENGTH.
431 432
 // Note that for Bowden Extruders a too-small value here may prevent loading.
@@ -535,7 +536,7 @@
535 536
  * Override with M92
536 537
  *                                      X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]]
537 538
  */
538
-#define DEFAULT_AXIS_STEPS_PER_UNIT   { 100, 100, 400, 95 }
539
+#define DEFAULT_AXIS_STEPS_PER_UNIT   { 100, 100, 400, 100 }
539 540
 
540 541
 /**
541 542
  * Default Max Feed Rate (mm/s)

Loading…
Cancel
Save