mirror of
https://github.com/MarlinFirmware/Configurations.git
synced 2025-09-17 09:37:57 +00:00
🔧 Configuration updates, cleanup (#709)
This commit is contained in:
parent
6c752ff180
commit
41eee7bf61
330 changed files with 5313 additions and 21822 deletions
|
@ -168,17 +168,21 @@
|
|||
//#define NUM_AXES 3
|
||||
|
||||
/**
|
||||
* Axis codes for additional axes:
|
||||
* This defines the axis code that is used in G-code commands to
|
||||
* reference a specific axis.
|
||||
* 'A' for rotational axis parallel to X
|
||||
* 'B' for rotational axis parallel to Y
|
||||
* 'C' for rotational axis parallel to Z
|
||||
* 'U' for secondary linear axis parallel to X
|
||||
* 'V' for secondary linear axis parallel to Y
|
||||
* 'W' for secondary linear axis parallel to Z
|
||||
* Regardless of the settings, firmware-internal axis IDs are
|
||||
* I (AXIS4), J (AXIS5), K (AXIS6).
|
||||
* Additional Axis Settings
|
||||
*
|
||||
* Define AXISn_ROTATES for all axes that rotate or pivot.
|
||||
* Rotational axis coordinates are expressed in degrees.
|
||||
*
|
||||
* AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
|
||||
* By convention the names and roles are typically:
|
||||
* 'A' : Rotational axis parallel to X
|
||||
* 'B' : Rotational axis parallel to Y
|
||||
* 'C' : Rotational axis parallel to Z
|
||||
* '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
|
||||
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
|
||||
|
@ -606,6 +610,7 @@
|
|||
//===========================================================================
|
||||
//============================= PID Settings ================================
|
||||
//===========================================================================
|
||||
|
||||
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
|
||||
// temperature control. Disable both for bang-bang heating.
|
||||
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
|
||||
|
@ -2002,7 +2007,7 @@
|
|||
// @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_TEMP_HOTEND 200
|
||||
|
|
|
@ -168,17 +168,21 @@
|
|||
//#define NUM_AXES 3
|
||||
|
||||
/**
|
||||
* Axis codes for additional axes:
|
||||
* This defines the axis code that is used in G-code commands to
|
||||
* reference a specific axis.
|
||||
* 'A' for rotational axis parallel to X
|
||||
* 'B' for rotational axis parallel to Y
|
||||
* 'C' for rotational axis parallel to Z
|
||||
* 'U' for secondary linear axis parallel to X
|
||||
* 'V' for secondary linear axis parallel to Y
|
||||
* 'W' for secondary linear axis parallel to Z
|
||||
* Regardless of the settings, firmware-internal axis IDs are
|
||||
* I (AXIS4), J (AXIS5), K (AXIS6).
|
||||
* Additional Axis Settings
|
||||
*
|
||||
* Define AXISn_ROTATES for all axes that rotate or pivot.
|
||||
* Rotational axis coordinates are expressed in degrees.
|
||||
*
|
||||
* AXISn_NAME defines the letter used to refer to the axis in (most) G-code commands.
|
||||
* By convention the names and roles are typically:
|
||||
* 'A' : Rotational axis parallel to X
|
||||
* 'B' : Rotational axis parallel to Y
|
||||
* 'C' : Rotational axis parallel to Z
|
||||
* '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
|
||||
#define AXIS4_NAME 'A' // :['A', 'B', 'C', 'U', 'V', 'W']
|
||||
|
@ -606,6 +610,7 @@
|
|||
//===========================================================================
|
||||
//============================= PID Settings ================================
|
||||
//===========================================================================
|
||||
|
||||
// Enable PIDTEMP for PID control or MPCTEMP for Predictive Model.
|
||||
// temperature control. Disable both for bang-bang heating.
|
||||
#define PIDTEMP // See the PID Tuning Guide at https://reprap.org/wiki/PID_Tuning
|
||||
|
@ -2002,7 +2007,7 @@
|
|||
// @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_TEMP_HOTEND 200
|
||||
|
|
|
@ -1,29 +1,29 @@
|
|||
NOTE ON FLASHING THE FIRMWARE:
|
||||
# NOTE ON FLASHING THE FIRMWARE:
|
||||
|
||||
The firmware for the Atmel chip used for USB on the Mighty Board is the same as the Arduino Mega's, but it doesn't do an automatic reset. If you want the printer to reset on DTR you will need to flash it with the firmware for the Arduino Mega.
|
||||
|
||||
### Use with all nozzle settings
|
||||
|
||||
Build plate shape: Rectangular
|
||||
[X] Origin at center
|
||||
[X] Heated bed
|
||||
G-code flavor: Marlin
|
||||
- Build plate shape: Rectangular
|
||||
- Origin at center
|
||||
- Heated bed
|
||||
- G-code flavor: Marlin
|
||||
|
||||
### Right Nozzle
|
||||
|
||||
Number of Extruders: 1
|
||||
- Number of Extruders: 1
|
||||
- X (Width) 227
|
||||
- Y (Depth) 148
|
||||
- Z (Heigth) 150
|
||||
|
||||
X (Width) 227
|
||||
Y (Depth) 148
|
||||
Z (Heigth) 150
|
||||
|
||||
Extruder 1 -
|
||||
Nozzle size: 0.4
|
||||
Compatible material diameter: 1.75
|
||||
Nozzle offset X: 0
|
||||
Nozzle offset Y: 0
|
||||
Cooling Fan Number:0
|
||||
## Extruder 1
|
||||
- Nozzle size: 0.4
|
||||
- Compatible material diameter: 1.75
|
||||
- Nozzle offset X: 0
|
||||
- Nozzle offset Y: 0
|
||||
- Cooling Fan Number:0
|
||||
|
||||
```gcode
|
||||
;START G-CODE;
|
||||
M104 T0 S{material_print_temperature}
|
||||
M140 S{material_bed_temperature}
|
||||
|
@ -48,8 +48,9 @@ M104 T1 S0 ; cool down left extruder
|
|||
M127 ; stop blower fan
|
||||
M18 ; disable stepper
|
||||
;END G-CODE;
|
||||
```
|
||||
|
||||
***Left Nozzle***
|
||||
## Left Nozzle
|
||||
Number of Extruders: 1
|
||||
X (Width) 227
|
||||
Y (Depth) 148
|
||||
|
@ -62,6 +63,7 @@ Extruder 1 -
|
|||
Nozzle offset Y: 0
|
||||
Cooling Fan Number:0
|
||||
|
||||
```gcode
|
||||
;START G-CODE;
|
||||
M104 S{material_print_temperature}
|
||||
M140 S{material_bed_temperature}
|
||||
|
@ -88,8 +90,9 @@ M104 T1 S0 ; cool down left extruder
|
|||
M127 ; stop blower fan
|
||||
M18 ; disable stepper
|
||||
;END G-CODE;
|
||||
```
|
||||
|
||||
***Both Nozzles***
|
||||
## Both Nozzles
|
||||
Number of Extruders: 2
|
||||
X (Width) 295 <---- bed width + 2 x nozzle offset
|
||||
Y (Depth) 148
|
||||
|
@ -115,6 +118,7 @@ Extruder 2 -
|
|||
G1 X150 Y70 F9000;move away from print in case extrusion cool down speed modifier too low
|
||||
;Extruder End G-code;
|
||||
|
||||
```gcode
|
||||
;START G-CODE;
|
||||
M104 T0 S{material_print_temperature, 0}
|
||||
M104 T1 S{material_print_temperature, 1}
|
||||
|
@ -155,3 +159,4 @@ M104 T1 S0 ; cool down left extruder
|
|||
M127 ; stop blower fan
|
||||
M18 ; disable stepper
|
||||
;END G-CODE;
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue