🔧 Configuration updates, cleanup (#709)

This commit is contained in:
Keith Bennett 2022-04-18 19:17:43 -07:00 committed by GitHub
parent 6c752ff180
commit 41eee7bf61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
330 changed files with 5313 additions and 21822 deletions

View file

@ -2007,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 180 #define PREHEAT_1_TEMP_HOTEND 180

View file

@ -169,17 +169,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -607,6 +611,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2004,7 +2009,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 205 #define PREHEAT_1_TEMP_HOTEND 205
@ -2042,12 +2047,6 @@
#define PREHEAT_6_TEMP_CHAMBER 35 #define PREHEAT_6_TEMP_CHAMBER 35
#define PREHEAT_6_FAN_SPEED 0 // Value from 0 to 255 #define PREHEAT_6_FAN_SPEED 0 // Value from 0 to 255
#define PREHEAT_7_LABEL "NYLON"
#define PREHEAT_7_TEMP_HOTEND 240 // NYLON
#define PREHEAT_7_TEMP_BED 80
#define PREHEAT_7_TEMP_CHAMBER 35
#define PREHEAT_7_FAN_SPEED 0 // Value from 0 to 255
/** /**
* Nozzle Park * Nozzle Park
* *

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2003,7 +2008,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 195 #define PREHEAT_1_TEMP_HOTEND 195

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2003,7 +2008,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 180 #define PREHEAT_1_TEMP_HOTEND 180

View file

@ -223,17 +223,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -661,6 +665,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2081,7 +2086,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 200 #define PREHEAT_1_TEMP_HOTEND 200

View file

@ -223,17 +223,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -661,6 +665,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2082,7 +2087,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 200 #define PREHEAT_1_TEMP_HOTEND 200

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 180 #define PREHEAT_1_TEMP_HOTEND 180

View file

@ -0,0 +1,11 @@
# AliExpress CL-260
Example configuration for the [AliExpress CL-260](https://www.aliexpress.com/item/32812528331.html) Ultimaker 2 clone.
*Note: Change `Z_MAX_POS` to 300 for the CL-260MAX.*
The setting "works" for my printer and the extruder using my calibration value, but you might want to tweak some settings, e.g enable EEPROM, increase default Z speed, adjust homing speeds,...
Have fun!
\- tobi

View file

@ -1,15 +0,0 @@
This is an example configuration for the CL-260 Ultimaker 2 clone.
Change Z_MAX_POS to 300 for the CL-260MAX.
(The printer is available on AliExpress; be aware that this is not a beginner's
printer -- it needs tweaking and some parts replaced before being decent.)
The printer comes with a quite old Marlin, the sources are available here:
http://www.thingiverse.com/thing:1635830/ and I recommend replacing them.
The setting "works" for my printer and the extruder using my calibration value.
You might want to tweak some settings, e.g enable EEPROM, increase default Z speed, adjust homing speeds,...
Have fun!
--
tobi

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2003,7 +2008,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 180 #define PREHEAT_1_TEMP_HOTEND 180

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 200 #define PREHEAT_1_TEMP_HOTEND 200

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 200 #define PREHEAT_1_TEMP_HOTEND 200

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2091,7 +2096,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 200 #define PREHEAT_1_TEMP_HOTEND 200

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -607,6 +611,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2005,7 +2010,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 190 #define PREHEAT_1_TEMP_HOTEND 190

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -607,6 +611,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2004,7 +2009,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 205 #define PREHEAT_1_TEMP_HOTEND 205

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 205 #define PREHEAT_1_TEMP_HOTEND 205

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 200 #define PREHEAT_1_TEMP_HOTEND 200

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2004,7 +2009,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 180 #define PREHEAT_1_TEMP_HOTEND 180

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2004,7 +2009,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 180 #define PREHEAT_1_TEMP_HOTEND 180

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2008,7 +2013,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 210 #define PREHEAT_1_TEMP_HOTEND 210

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2008,7 +2013,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 210 #define PREHEAT_1_TEMP_HOTEND 210

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2008,7 +2013,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 210 #define PREHEAT_1_TEMP_HOTEND 210

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2008,7 +2013,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 210 #define PREHEAT_1_TEMP_HOTEND 210

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2003,7 +2008,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 210 #define PREHEAT_1_TEMP_HOTEND 210

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2003,7 +2008,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 210 #define PREHEAT_1_TEMP_HOTEND 210

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2003,7 +2008,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 210 #define PREHEAT_1_TEMP_HOTEND 210

View file

@ -172,17 +172,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -610,6 +614,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2006,7 +2011,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 180 #define PREHEAT_1_TEMP_HOTEND 180

View file

@ -169,17 +169,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -607,6 +611,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2004,7 +2009,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 190 #define PREHEAT_1_TEMP_HOTEND 190

View file

@ -169,17 +169,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -607,6 +611,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2004,7 +2009,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 190 #define PREHEAT_1_TEMP_HOTEND 190

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 190 #define PREHEAT_1_TEMP_HOTEND 190

View file

@ -187,17 +187,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -625,6 +629,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2033,7 +2038,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 215 #define PREHEAT_1_TEMP_HOTEND 215

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 200 #define PREHEAT_1_TEMP_HOTEND 200

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2003,7 +2008,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 180 #define PREHEAT_1_TEMP_HOTEND 180

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 180 #define PREHEAT_1_TEMP_HOTEND 180

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 180 #define PREHEAT_1_TEMP_HOTEND 180

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 180 #define PREHEAT_1_TEMP_HOTEND 180

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 200 #define PREHEAT_1_TEMP_HOTEND 200

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2018,7 +2023,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 190 #define PREHEAT_1_TEMP_HOTEND 190

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 180 #define PREHEAT_1_TEMP_HOTEND 180

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 200 #define PREHEAT_1_TEMP_HOTEND 200

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 180 #define PREHEAT_1_TEMP_HOTEND 180

File diff suppressed because it is too large Load diff

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 190 #define PREHEAT_1_TEMP_HOTEND 190

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -1958,7 +1963,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 180 #define PREHEAT_1_TEMP_HOTEND 180

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2015,7 +2020,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 190 #define PREHEAT_1_TEMP_HOTEND 190

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2015,7 +2020,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 190 #define PREHEAT_1_TEMP_HOTEND 190

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2000,7 +2005,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 190 #define PREHEAT_1_TEMP_HOTEND 190

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 200 #define PREHEAT_1_TEMP_HOTEND 200

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 190 #define PREHEAT_1_TEMP_HOTEND 190

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2003,7 +2008,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 200 #define PREHEAT_1_TEMP_HOTEND 200

View file

@ -176,17 +176,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -614,6 +618,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2016,7 +2021,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 180 #define PREHEAT_1_TEMP_HOTEND 180

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2003,7 +2008,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 200 #define PREHEAT_1_TEMP_HOTEND 200

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2004,7 +2009,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 185 #define PREHEAT_1_TEMP_HOTEND 185

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 215 #define PREHEAT_1_TEMP_HOTEND 215

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2003,7 +2008,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 180 #define PREHEAT_1_TEMP_HOTEND 180

View file

@ -169,17 +169,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -607,6 +611,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2018,7 +2023,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 190 #define PREHEAT_1_TEMP_HOTEND 190

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2003,7 +2008,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 180 #define PREHEAT_1_TEMP_HOTEND 180

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 180 #define PREHEAT_1_TEMP_HOTEND 180

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2003,7 +2008,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 180 #define PREHEAT_1_TEMP_HOTEND 180

View file

@ -177,17 +177,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -615,6 +619,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2011,7 +2016,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 195 #define PREHEAT_1_TEMP_HOTEND 195

View file

@ -177,17 +177,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -615,6 +619,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2011,7 +2016,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 200 #define PREHEAT_1_TEMP_HOTEND 200

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 180 #define PREHEAT_1_TEMP_HOTEND 180

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2005,7 +2010,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 205 #define PREHEAT_1_TEMP_HOTEND 205

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2005,7 +2010,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 205 #define PREHEAT_1_TEMP_HOTEND 205

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2005,7 +2010,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 205 #define PREHEAT_1_TEMP_HOTEND 205

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2006,7 +2011,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 205 #define PREHEAT_1_TEMP_HOTEND 205

View file

@ -175,17 +175,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -613,6 +617,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2031,7 +2036,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 205 #define PREHEAT_1_TEMP_HOTEND 205

View file

@ -175,17 +175,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -613,6 +617,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2036,7 +2041,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 205 #define PREHEAT_1_TEMP_HOTEND 205

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2001,7 +2006,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 185 #define PREHEAT_1_TEMP_HOTEND 185

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 190 #define PREHEAT_1_TEMP_HOTEND 190

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 185 #define PREHEAT_1_TEMP_HOTEND 185

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 225 #define PREHEAT_1_TEMP_HOTEND 225

View file

@ -1,4 +1,4 @@
Configuration Notes # Configuration Notes
This configuration is for the Creality CR-10S with a BigTreeTech SKR 2.0 board, TMC2209 stepper drivers, CR-Touch probe, and the Microswiss All-Metal Hotend. This configuration is for the Creality CR-10S with a BigTreeTech SKR 2.0 board, TMC2209 stepper drivers, CR-Touch probe, and the Microswiss All-Metal Hotend.

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2003,7 +2008,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 185 #define PREHEAT_1_TEMP_HOTEND 185

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 200 #define PREHEAT_1_TEMP_HOTEND 200

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2003,7 +2008,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 205 #define PREHEAT_1_TEMP_HOTEND 205

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2005,7 +2010,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 185 #define PREHEAT_1_TEMP_HOTEND 185

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2005,7 +2010,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 185 #define PREHEAT_1_TEMP_HOTEND 185

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 185 #define PREHEAT_1_TEMP_HOTEND 185

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 200 #define PREHEAT_1_TEMP_HOTEND 200

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 200 #define PREHEAT_1_TEMP_HOTEND 200

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 185 #define PREHEAT_1_TEMP_HOTEND 185

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2003,7 +2008,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 185 #define PREHEAT_1_TEMP_HOTEND 185

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2007,7 +2012,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 180 #define PREHEAT_1_TEMP_HOTEND 180

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 200 #define PREHEAT_1_TEMP_HOTEND 200

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 185 #define PREHEAT_1_TEMP_HOTEND 185

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 185 #define PREHEAT_1_TEMP_HOTEND 185

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 185 #define PREHEAT_1_TEMP_HOTEND 185

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 185 #define PREHEAT_1_TEMP_HOTEND 185

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2003,7 +2008,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 185 #define PREHEAT_1_TEMP_HOTEND 185

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2003,7 +2008,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 185 #define PREHEAT_1_TEMP_HOTEND 185

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2003,7 +2008,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 185 #define PREHEAT_1_TEMP_HOTEND 185

View file

@ -169,17 +169,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -607,6 +611,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2003,7 +2008,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 195 #define PREHEAT_1_TEMP_HOTEND 195

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 185 #define PREHEAT_1_TEMP_HOTEND 185

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 185 #define PREHEAT_1_TEMP_HOTEND 185

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 185 #define PREHEAT_1_TEMP_HOTEND 185

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2002,7 +2007,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 185 #define PREHEAT_1_TEMP_HOTEND 185

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2001,7 +2006,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 185 #define PREHEAT_1_TEMP_HOTEND 185

View file

@ -168,17 +168,21 @@
//#define NUM_AXES 3 //#define NUM_AXES 3
/** /**
* Axis codes for additional axes: * Additional Axis Settings
* This defines the axis code that is used in G-code commands to *
* reference a specific axis. * Define AXISn_ROTATES for all axes that rotate or pivot.
* 'A' for rotational axis parallel to X * Rotational axis coordinates are expressed in degrees.
* 'B' for rotational axis parallel to Y *
* 'C' for rotational axis parallel to Z * AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
* 'U' for secondary linear axis parallel to X * By convention the names and roles are typically:
* 'V' for secondary linear axis parallel to Y * 'A' : Rotational axis parallel to X
* 'W' for secondary linear axis parallel to Z * 'B' : Rotational axis parallel to Y
* Regardless of the settings, firmware-internal axis IDs are * 'C' : Rotational axis parallel to Z
* I (AXIS4), J (AXIS5), K (AXIS6). * 'U' : Secondary linear axis parallel to X
* 'V' : Secondary linear axis parallel to Y
* 'W' : Secondary linear axis parallel to Z
*
* Regardless of these settings the axes are internally named I, J, K, U, V, W.
*/ */
#if NUM_AXES >= 4 #if NUM_AXES >= 4
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W'] #define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
@ -606,6 +610,7 @@
//=========================================================================== //===========================================================================
//============================= PID Settings ================================ //============================= PID Settings ================================
//=========================================================================== //===========================================================================
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model. // Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
// temperature control. Disable both for bang-bang heating. // temperature control. Disable both for bang-bang heating.
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning #define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
@ -2003,7 +2008,7 @@
// @section temperature // @section temperature
// //
// Preheat Constants - Up to 5 are supported without changes // Preheat Constants - Up to 6 are supported without changes
// //
#define PREHEAT_1_LABEL "PLA" #define PREHEAT_1_LABEL "PLA"
#define PREHEAT_1_TEMP_HOTEND 185 #define PREHEAT_1_TEMP_HOTEND 185

Some files were not shown because too many files have changed in this diff Show more