Edit default values
Getting closer to the stock settings, I edited the hotend PID and extruder step values.
This commit is contained in:
parent
fb9afb0589
commit
7f311c086e
|
@ -380,8 +380,8 @@
|
|||
// If you are using a pre-configured hotend then you can use one of the value sets by uncommenting it
|
||||
|
||||
// i3 Mega
|
||||
#define DEFAULT_Kp 13.76
|
||||
#define DEFAULT_Ki 0.85
|
||||
#define DEFAULT_Kp 16.43
|
||||
#define DEFAULT_Ki 1.03
|
||||
#define DEFAULT_Kd 55.79
|
||||
|
||||
// Ultimaker
|
||||
|
@ -612,7 +612,7 @@
|
|||
* Override with M92
|
||||
* X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]]
|
||||
*/
|
||||
#define DEFAULT_AXIS_STEPS_PER_UNIT { 80, 80, 400, 98.26 }
|
||||
#define DEFAULT_AXIS_STEPS_PER_UNIT { 80, 80, 400, 92.6 }
|
||||
|
||||
/**
|
||||
* Default Max Feed Rate (mm/s)
|
||||
|
@ -1015,7 +1015,7 @@
|
|||
#if ENABLED(G26_MESH_VALIDATION)
|
||||
#define MESH_TEST_NOZZLE_SIZE 0.4 // (mm) Diameter of primary nozzle.
|
||||
#define MESH_TEST_LAYER_HEIGHT 0.2 // (mm) Default layer height for the G26 Mesh Validation Tool.
|
||||
#define MESH_TEST_HOTEND_TEMP 205.0 // (°C) Default nozzle temperature for the G26 Mesh Validation Tool.
|
||||
#define MESH_TEST_HOTEND_TEMP 200.0 // (°C) Default nozzle temperature for the G26 Mesh Validation Tool.
|
||||
#define MESH_TEST_BED_TEMP 60.0 // (°C) Default bed temperature for the G26 Mesh Validation Tool.
|
||||
#endif
|
||||
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
* here we define this default string as the date where the latest release
|
||||
* version was tagged.
|
||||
*/
|
||||
#define STRING_DISTRIBUTION_DATE "2019-12-02"
|
||||
#define STRING_DISTRIBUTION_DATE "2018-12-13"
|
||||
|
||||
/**
|
||||
* Required minimum Configuration.h and Configuration_adv.h file versions.
|
||||
|
|
|
@ -61,7 +61,7 @@ This firmware is perfectly calibrated for my own machine with TMC2208 (1.015V on
|
|||
- If it's less or more than 20mm, add or subtract that value from 100mm, e.g.:
|
||||
- If you measure 25mm, your result would be 95mm. If you measure 15mm, your result would be 105mm
|
||||
- Calculate your new value: ( 100mm / actually extruded filament ) * 98.26
|
||||
- For example, if your markings are at 15mm, you'd calculate: (100/105) * 98.26 = 93.58
|
||||
- For example, if your markings are at 15mm, you'd calculate: (100/105) * 92.6 = 88.19
|
||||
- Put in the new value like this: `M92 X80.00 Y80.00 Z400.00 Exxx.xx`, replacing `x` with your value
|
||||
- Save with `M500`
|
||||
|
||||
|
@ -99,7 +99,6 @@ M420 S1
|
|||
## Detailed changes:
|
||||
|
||||
- Thermal runaway protection enabled
|
||||
- TMC2208 configured in standalone mode
|
||||
- Stepper orientation flipped (you don't have to flip the connectors on the board anymore)
|
||||
- Linear advance enabled (Off by default. [Research, calibrate](http://marlinfw.org/docs/features/lin_advance.html) and then enable with `M900 Kx`)
|
||||
- S-Curve Acceleration enabled
|
||||
|
|
Loading…
Reference in New Issue