Commit e93e3dd0 authored by MagoKimbra's avatar MagoKimbra

Fix

parent e20f673d
...@@ -242,9 +242,9 @@ ...@@ -242,9 +242,9 @@
// If you are using a pre-configured hotend then you can use one of the value sets by uncommenting it // If you are using a pre-configured hotend then you can use one of the value sets by uncommenting it
// HotEnd{HE0,HE1,HE2,HE3} // HotEnd{HE0,HE1,HE2,HE3}
#define DEFAULT_Kp {41.51,41.51,41.51,41.51} #define DEFAULT_Kp {40,41,41,41} // Kp for E0, E1, E2, E3
#define DEFAULT_Ki {7.28,7.28,7.28,7.28} #define DEFAULT_Ki {7,7,7,7} // Ki for E0, E1, E2, E3
#define DEFAULT_Kd {59.17,59.17,59.17,59.17} #define DEFAULT_Kd {59,59,59,59} // Kd for E0, E1, E2, E3
#endif // PIDTEMP #endif // PIDTEMP
......
...@@ -90,11 +90,15 @@ Different feedrate for all extruder ...@@ -90,11 +90,15 @@ Different feedrate for all extruder
----------------- -----------------
* \#define DEFAULT_MAX_FEEDRATE {300,300,2,100,100,100,100} // X, Y, Z, E0, E1, E2, E3 (mm/sec) * \#define DEFAULT_MAX_FEEDRATE {300,300,2,100,100,100,100} // X, Y, Z, E0, E1, E2, E3 (mm/sec)
Different acceleration for all extruder
-----------------
* #define DEFAULT_MAX_ACCELERATION {3000,3000,50,1000,1000,1000,1000} // X, Y, Z, E0, E1, E2, E3 maximum start speed for accelerated moves.
Different PID for all hotend Different PID for all hotend
----------------- -----------------
* \#define DEFAULT_Kp {41.51,50,0,0} * \#define DEFAULT_Kp {41.51,50,0,0} // Kp for E0, E1, E2, E3
* \#define DEFAULT_Ki {7.28,15,0,0} * \#define DEFAULT_Ki {7.28,15,0,0} // Ki for E0, E1, E2, E3
* \#define DEFAULT_Kd {59.17,90,0,0} * \#define DEFAULT_Kd {59.17,90,0,0} // Kd for E0, E1, E2, E3
Add Feedrate for retraction Add Feedrate for retraction
----------------- -----------------
...@@ -452,4 +456,14 @@ For example, suppose you measured the endstop position and it was 20mm to the ri ...@@ -452,4 +456,14 @@ For example, suppose you measured the endstop position and it was 20mm to the ri
* \#define Y_PROBE_OFFSET_FROM_EXTRUDER 10 * \#define Y_PROBE_OFFSET_FROM_EXTRUDER 10
* \#define Z_PROBE_OFFSET_FROM_EXTRUDER 2.75 * \#define Z_PROBE_OFFSET_FROM_EXTRUDER 2.75
That's it.. enjoy never having to calibrate your Z endstop neither leveling your bed by hand anymore ;-) That's it.. enjoy never having to calibrate your Z endstop neither leveling your bed by hand anymore ;-)
\ No newline at end of file
Filament Sensor
---------------
Supports the use of a real time filament diameter sensor that measures the diameter of the filament going into the extruder and then adjusts the extrusion rate to compensate for filament that does not match what is defined in the g-code. The diameter can also be displayed on the LCD screen. This potentially eliminates the need to measure filament diameter when changing spools of filament. Gcode becomes independent of the filament diameter. Can also compensate for changing diameter.
For examples of these sensors, see: http://www.thingiverse.com/thing:454584, https://www.youmagine.com/designs/filament-diameter-sensor, http://diy3dprinting.blogspot.com/2014/01/diy-filament-diameter-sensor.html. Any sensor which produces a voltage equivalent to the diameter in mm (i.e. 1v = 1mm) can be used. This provides a very simple interface and may encourage more innovation in this area.
4 new Mcodes are defined to set relevant parameters: M404, M405, M406, M407 - see above.
Implements a delay buffer to handle the transit delay between where the filament is measured and when it gets to the extruder.
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment