30
30
// Serial port 0 is still used by the Arduino bootloader regardless of this setting.
31
31
#define SERIAL_PORT 0
32
32
33
+ // This determines the communication speed of the printer
33
34
// This determines the communication speed of the printer
34
35
#define BAUDRATE 250000
35
- //#define BAUDRATE 115200
36
+
37
+ // This enables the serial port associated to the Bluetooth interface
38
+ //#define BTENABLED // Enable BT interface on AT90USB devices
39
+
36
40
37
41
//// The following define selects which electronics board you have. Please choose the one that matches your setup
38
42
// 10 = Gen7 custom (Alfons3 Version) "https://github.com/Alfons3/Generation_7_Electronics"
61
65
// 80 = Rumba
62
66
// 81 = Printrboard (AT90USB1286)
63
67
// 82 = Brainwave (AT90USB646)
68
+ // 83 = SAV Mk-I (AT90USB1286)
64
69
// 9 = Gen3+
65
70
// 70 = Megatronics
66
71
// 701= Megatronics v2.0
79
84
// Define this to set a custom name for your generic Mendel,
80
85
// #define CUSTOM_MENDEL_NAME "This Mendel"
81
86
87
+ // Define this to set a unique identifier for this printer, (Used by some programs to differentiate between machines)
88
+ // You can use an online service to generate a random UUID. (eg http://www.uuidgenerator.net/version4)
89
+ // #define MACHINE_UUID "00000000-0000-0000-0000-000000000000"
90
+
82
91
// This defines the number of extruders
83
92
#define EXTRUDERS 1
84
93
88
97
89
98
#define POWER_SUPPLY 2
90
99
100
+ // Define this to have the electronics keep the powersupply off on startup. If you don't know what this is leave it.
101
+ // #define PS_DEFAULT_OFF
102
+
91
103
//===========================================================================
92
104
//=============================Thermal Settings ============================
93
105
//===========================================================================
102
114
// 2 is 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
103
115
// 3 is mendel-parts thermistor (4.7k pullup)
104
116
// 4 is 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
105
- // 5 is 100K thermistor - ATC Semitec 104GT-2 (Used in ParCan) (4.7k pullup)
117
+ // 5 is 100K thermistor - ATC Semitec 104GT-2 (Used in ParCan & J-Head ) (4.7k pullup)
106
118
// 6 is 100k EPCOS - Not as accurate as table 1 (created using a fluke thermocouple) (4.7k pullup)
107
119
// 7 is 100k Honeywell thermistor 135-104LAG-J01 (4.7k pullup)
108
120
// 71 is 100k Honeywell thermistor 135-104LAF-J01 (4.7k pullup)
115
127
// (but gives greater accuracy and more stable PID)
116
128
// 51 is 100k thermistor - EPCOS (1k pullup)
117
129
// 52 is 200k thermistor - ATC Semitec 204GT-2 (1k pullup)
118
- // 55 is 100k thermistor - ATC Semitec 104GT-2 (Used in ParCan) (1k pullup)
130
+ // 55 is 100k thermistor - ATC Semitec 104GT-2 (Used in ParCan & J-Head ) (1k pullup)
119
131
120
132
#define TEMP_SENSOR_0 1 //{SD Patch}
121
- #define TEMP_SENSOR_1 0
133
+ #define TEMP_SENSOR_1 -1
122
134
#define TEMP_SENSOR_2 0
123
135
#define TEMP_SENSOR_BED 1 //{SD Patch}
124
136
125
137
// This makes temp sensor 1 a redundant sensor for sensor 0. If the temperatures difference between these sensors is to high the print will be aborted.
126
138
//#define TEMP_SENSOR_1_AS_REDUNDANT
127
139
#define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
128
140
141
+ // This makes temp sensor 1 a redundant sensor for sensor 0. If the temperatures difference between these sensors is to high the print will be aborted.
142
+ //#define TEMP_SENSOR_1_AS_REDUNDANT
143
+ #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
144
+
129
145
// Actual temperature must be close to target for this long before M109 returns success
130
146
#define TEMP_RESIDENCY_TIME 5 // (seconds) {SD Patch}
131
147
#define TEMP_HYSTERESIS 3 // (degC) range of +/- temperatures considered "close" to the target one
@@ -341,7 +357,10 @@ const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic o
341
357
#define X_PROBE_OFFSET_FROM_EXTRUDER -25
342
358
#define Y_PROBE_OFFSET_FROM_EXTRUDER -29
343
359
#define Z_PROBE_OFFSET_FROM_EXTRUDER -12.35
344
-
360
+
361
+ #define Z_RAISE_BEFORE_HOMING 4 // (in mm) Raise Z before homing (G28) for Probe Clearance.
362
+ // Be sure you have this distance over your Z_MAX_POS in case
363
+
345
364
#define XY_TRAVEL_SPEED 8000 // X and Y axis travel speed between probes, in mm/min
346
365
347
366
#define Z_RAISE_BEFORE_PROBING 15 //How much the extruder will be raised before traveling to the first probing point.
@@ -353,6 +372,24 @@ const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic o
353
372
// You MUST HAVE the SERVO_ENDSTOPS defined to use here a value higher than zero otherwise your code will not compile.
354
373
355
374
// #define PROBE_SERVO_DEACTIVATION_DELAY 300
375
+
376
+
377
+ //If you have enabled the Bed Auto Levelling and are using the same Z Probe for Z Homing,
378
+ //it is highly recommended you let this Z_SAFE_HOMING enabled!!!
379
+
380
+ #define Z_SAFE_HOMING // This feature is meant to avoid Z homing with probe outside the bed area.
381
+ // When defined, it will:
382
+ // - Allow Z homing only after X and Y homing AND stepper drivers still enabled
383
+ // - If stepper drivers timeout, it will need X and Y homing again before Z homing
384
+ // - Position the probe in a defined XY point before Z Homing when homing all axis (G28)
385
+ // - Block Z homing only when the probe is outside bed area.
386
+
387
+ #ifdef Z_SAFE_HOMING
388
+
389
+ #define Z_SAFE_HOMING_X_POINT (X_MAX_LENGTH/2) // X point for Z homing when homing all axis (G28)
390
+ #define Z_SAFE_HOMING_Y_POINT (Y_MAX_LENGTH/2) // Y point for Z homing when homing all axis (G28)
391
+
392
+ #endif
356
393
357
394
#endif
358
395
@@ -453,6 +490,15 @@ const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic o
453
490
#define ABS_PREHEAT_HPB_TEMP 95 //{SD Patch}
454
491
#define ABS_PREHEAT_FAN_SPEED 255 // Insert Value between 0 and 255
455
492
493
+ // Preheat Constants
494
+ #define PLA_PREHEAT_HOTEND_TEMP 180
495
+ #define PLA_PREHEAT_HPB_TEMP 70
496
+ #define PLA_PREHEAT_FAN_SPEED 255 // Insert Value between 0 and 255
497
+
498
+ #define ABS_PREHEAT_HOTEND_TEMP 240
499
+ #define ABS_PREHEAT_HPB_TEMP 100
500
+ #define ABS_PREHEAT_FAN_SPEED 255 // Insert Value between 0 and 255
501
+
456
502
//LCD and SD support
457
503
//#define ULTRA_LCD //general lcd support, also 16x2
458
504
//#define DOGLCD // Support for SPI LCD 128x64 (Controller ST7565R graphic Display Family)
@@ -562,6 +608,30 @@ const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic o
562
608
#define ULTIPANEL
563
609
#endif
564
610
611
+ // Shift register panels
612
+ // ---------------------
613
+ // 2 wire Non-latching LCD SR from:
614
+ // https://bitbucket.org/fmalpartida/new-liquidcrystal/wiki/schematics#!shiftregister-connection
615
+ //#define SR_LCD
616
+ #ifdef SR_LCD
617
+ #define SR_LCD_2W_NL // Non latching 2 wire shiftregister
618
+ //#define NEWPANEL
619
+ #endif
620
+
621
+ // Panucatt VIKI LCD with status LEDs, integrated click & L/R/U/P buttons, separate encoder inputs
622
+ //#define LCD_I2C_VIKI
623
+ #ifdef LCD_I2C_VIKI
624
+ // This uses the LiquidTWI2 library v1.2.3 or later ( https://github.com/lincomatic/LiquidTWI2 )
625
+ // Make sure the LiquidTWI2 directory is placed in the Arduino or Sketchbook libraries subdirectory.
626
+ // Note: The pause/stop/resume LCD button pin should be connected to the Arduino
627
+ // BTN_ENC pin (or set BTN_ENC to -1 if not used)
628
+ #define LCD_I2C_TYPE_MCP23017
629
+ #define LCD_I2C_ADDRESS 0x20 // I2C Address of the port expander
630
+ #define LCD_USE_I2C_BUZZER //comment out to disable buzzer on LCD (requires LiquidTWI2 v1.2.3 or later)
631
+ #define NEWPANEL
632
+ #define ULTIPANEL
633
+ #endif
634
+
565
635
#ifdef ULTIPANEL
566
636
// #define NEWPANEL //enable this if you have a click-encoder panel
567
637
#define SDSUPPORT
@@ -595,6 +665,11 @@ const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic o
595
665
// Increase the FAN pwm frequency. Removes the PWM noise but increases heating in the FET/Arduino
596
666
//#define FAST_PWM_FAN
597
667
668
+ // Temperature status leds that display the hotend and bet temperature.
669
+ // If alle hotends and bed temperature and temperature setpoint are < 54C then the BLUE led is on.
670
+ // Otherwise the RED led is on. There is 1C hysteresis.
671
+ //#define TEMP_STAT_LEDS
672
+
598
673
// Use software PWM to drive the fan, as for the heaters. This uses a very low frequency
599
674
// which is not ass annoying as with the hardware PWM. On the other hand, if this frequency
600
675
// is too low, you should also increment SOFT_PWM_SCALE.
@@ -616,6 +691,8 @@ const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic o
616
691
// Support for the BariCUDA Paste Extruder.
617
692
//#define BARICUDA
618
693
694
+ //define BlinkM/CyzRgb Support
695
+ //#define BLINKM
619
696
620
697
/*********************************************************************\
621
698
* R/C SERVO support
0 commit comments