mirror of
https://github.com/MarlinFirmware/Configurations.git
synced 2025-07-07 23:17:38 -06:00
Toolchange G-code and thermistor 332
This commit is contained in:
parent
a1ad8cff9f
commit
f0a82637f6
297 changed files with 1364 additions and 633 deletions
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1533,9 +1534,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -361,7 +361,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1565,9 +1566,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1533,9 +1534,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1533,9 +1534,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1551,9 +1552,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -398,7 +398,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1612,9 +1613,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1785,6 +1785,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -398,7 +398,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1610,9 +1611,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1784,6 +1784,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1533,9 +1534,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1544,9 +1545,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1533,9 +1534,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1533,9 +1534,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1646,9 +1647,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -361,7 +361,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1559,9 +1560,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -361,7 +361,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1543,9 +1544,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1530,9 +1531,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1544,9 +1545,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1543,9 +1544,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1534,9 +1535,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1787,6 +1787,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1515,9 +1516,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1537,9 +1538,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1533,9 +1534,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1533,9 +1534,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1533,9 +1534,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1521,9 +1522,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -368,7 +368,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1534,9 +1535,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1791,6 +1791,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1521,9 +1522,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1524,9 +1525,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1525,9 +1526,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -361,7 +361,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1532,9 +1533,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1543,9 +1544,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1534,9 +1535,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1536,9 +1537,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -369,7 +369,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1552,9 +1553,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1537,9 +1538,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1537,9 +1538,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1543,9 +1544,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1537,9 +1538,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1537,9 +1538,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1543,9 +1544,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1531,9 +1532,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1537,9 +1538,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1532,9 +1533,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1530,9 +1531,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1779,6 +1779,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1543,9 +1544,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1537,9 +1538,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1537,9 +1538,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1537,9 +1538,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1537,9 +1538,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1537,9 +1538,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -362,7 +362,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1534,9 +1535,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
|
@ -360,7 +360,8 @@
|
||||||
* -1 : thermocouple with AD595
|
* -1 : thermocouple with AD595
|
||||||
* 0 : not used
|
* 0 : not used
|
||||||
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
* 1 : 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
|
||||||
* 331 : (3.3V scaled thermistor 1 table)
|
* 331 : (3.3V scaled thermistor 1 table for MEGA)
|
||||||
|
* 332 : (3.3V scaled thermistor 1 table for DUE)
|
||||||
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
* 2 : 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
|
||||||
* 3 : Mendel-parts thermistor (4.7k pullup)
|
* 3 : Mendel-parts thermistor (4.7k pullup)
|
||||||
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
* 4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
|
||||||
|
@ -1532,9 +1533,10 @@
|
||||||
// Default number of triangles
|
// Default number of triangles
|
||||||
#define NOZZLE_CLEAN_TRIANGLES 3
|
#define NOZZLE_CLEAN_TRIANGLES 3
|
||||||
|
|
||||||
// Specify positions as { X, Y, Z }
|
// Specify positions for each tool as { { X, Y, Z }, { X, Y, Z } }
|
||||||
#define NOZZLE_CLEAN_START_POINT { 30, 30, (Z_MIN_POS + 1) }
|
// Dual hotend system may use { { -20, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }, { 420, (Y_BED_SIZE / 2), (Z_MIN_POS + 1) }}
|
||||||
#define NOZZLE_CLEAN_END_POINT { 100, 60, (Z_MIN_POS + 1) }
|
#define NOZZLE_CLEAN_START_POINT { { 30, 30, (Z_MIN_POS + 1) } }
|
||||||
|
#define NOZZLE_CLEAN_END_POINT { { 100, 60, (Z_MIN_POS + 1) } }
|
||||||
|
|
||||||
// Circular pattern radius
|
// Circular pattern radius
|
||||||
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
#define NOZZLE_CLEAN_CIRCLE_RADIUS 6.5
|
||||||
|
|
|
@ -1783,6 +1783,9 @@
|
||||||
// Z raise distance for tool-change, as needed for some extruders
|
// Z raise distance for tool-change, as needed for some extruders
|
||||||
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
#define TOOLCHANGE_ZRAISE 2 // (mm)
|
||||||
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
//#define TOOLCHANGE_NO_RETURN // Never return to the previous position on tool-change
|
||||||
|
#if ENABLED(TOOLCHANGE_NO_RETURN)
|
||||||
|
//#define EVENT_GCODE_AFTER_TOOLCHANGE "G12X" // G-code to run after tool-change is complete
|
||||||
|
#endif
|
||||||
|
|
||||||
// Retract and prime filament on tool-change
|
// Retract and prime filament on tool-change
|
||||||
//#define TOOLCHANGE_FILAMENT_SWAP
|
//#define TOOLCHANGE_FILAMENT_SWAP
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue