Skip to content

Commit 84c1474

Browse files
committed
Merge pull request MarlinFirmware#1 from fsantini/ozadr1an
Full merge with base Marlin repo, latest commits
2 parents aa04fc8 + d6a3870 commit 84c1474

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+874
-232
lines changed

ArduinoAddons/Arduino_0.xx/Sanguino/cores/arduino/Copy of wiring.h

-135
This file was deleted.

Marlin/BlinkM.cpp

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/*
2+
BlinkM.cpp - Library for controlling a BlinkM over i2c
3+
Created by Tim Koster, August 21 2013.
4+
*/
5+
#include "Marlin.h"
6+
#ifdef BLINKM
7+
8+
#if (ARDUINO >= 100)
9+
# include "Arduino.h"
10+
#else
11+
# include "WProgram.h"
12+
#endif
13+
14+
#include "BlinkM.h"
15+
16+
void SendColors(byte red, byte grn, byte blu)
17+
{
18+
Wire.begin();
19+
Wire.beginTransmission(0x09);
20+
Wire.write('o'); //to disable ongoing script, only needs to be used once
21+
Wire.write('n');
22+
Wire.write(red);
23+
Wire.write(grn);
24+
Wire.write(blu);
25+
Wire.endTransmission();
26+
}
27+
28+
#endif //BLINKM
29+

Marlin/BlinkM.h

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/*
2+
BlinkM.h
3+
Library header file for BlinkM library
4+
*/
5+
#if (ARDUINO >= 100)
6+
# include "Arduino.h"
7+
#else
8+
# include "WProgram.h"
9+
#endif
10+
11+
#include "Wire.h"
12+
13+
void SendColors(byte red, byte grn, byte blu);
14+

Marlin/Configuration.h

+82-5
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,13 @@
3030
// Serial port 0 is still used by the Arduino bootloader regardless of this setting.
3131
#define SERIAL_PORT 0
3232

33+
// This determines the communication speed of the printer
3334
// This determines the communication speed of the printer
3435
#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+
3640

3741
//// The following define selects which electronics board you have. Please choose the one that matches your setup
3842
// 10 = Gen7 custom (Alfons3 Version) "https://github.com/Alfons3/Generation_7_Electronics"
@@ -61,6 +65,7 @@
6165
// 80 = Rumba
6266
// 81 = Printrboard (AT90USB1286)
6367
// 82 = Brainwave (AT90USB646)
68+
// 83 = SAV Mk-I (AT90USB1286)
6469
// 9 = Gen3+
6570
// 70 = Megatronics
6671
// 701= Megatronics v2.0
@@ -79,6 +84,10 @@
7984
// Define this to set a custom name for your generic Mendel,
8085
// #define CUSTOM_MENDEL_NAME "This Mendel"
8186

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+
8291
// This defines the number of extruders
8392
#define EXTRUDERS 1
8493

@@ -88,6 +97,9 @@
8897

8998
#define POWER_SUPPLY 2
9099

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+
91103
//===========================================================================
92104
//=============================Thermal Settings ============================
93105
//===========================================================================
@@ -102,7 +114,7 @@
102114
// 2 is 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
103115
// 3 is mendel-parts thermistor (4.7k pullup)
104116
// 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)
106118
// 6 is 100k EPCOS - Not as accurate as table 1 (created using a fluke thermocouple) (4.7k pullup)
107119
// 7 is 100k Honeywell thermistor 135-104LAG-J01 (4.7k pullup)
108120
// 71 is 100k Honeywell thermistor 135-104LAF-J01 (4.7k pullup)
@@ -115,17 +127,21 @@
115127
// (but gives greater accuracy and more stable PID)
116128
// 51 is 100k thermistor - EPCOS (1k pullup)
117129
// 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)
119131

120132
#define TEMP_SENSOR_0 1 //{SD Patch}
121-
#define TEMP_SENSOR_1 0
133+
#define TEMP_SENSOR_1 -1
122134
#define TEMP_SENSOR_2 0
123135
#define TEMP_SENSOR_BED 1 //{SD Patch}
124136

125137
// 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.
126138
//#define TEMP_SENSOR_1_AS_REDUNDANT
127139
#define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
128140

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+
129145
// Actual temperature must be close to target for this long before M109 returns success
130146
#define TEMP_RESIDENCY_TIME 5 // (seconds) {SD Patch}
131147
#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
341357
#define X_PROBE_OFFSET_FROM_EXTRUDER -25
342358
#define Y_PROBE_OFFSET_FROM_EXTRUDER -29
343359
#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+
345364
#define XY_TRAVEL_SPEED 8000 // X and Y axis travel speed between probes, in mm/min
346365

347366
#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
353372
// You MUST HAVE the SERVO_ENDSTOPS defined to use here a value higher than zero otherwise your code will not compile.
354373

355374
// #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
356393

357394
#endif
358395

@@ -453,6 +490,15 @@ const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic o
453490
#define ABS_PREHEAT_HPB_TEMP 95 //{SD Patch}
454491
#define ABS_PREHEAT_FAN_SPEED 255 // Insert Value between 0 and 255
455492

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+
456502
//LCD and SD support
457503
//#define ULTRA_LCD //general lcd support, also 16x2
458504
//#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
562608
#define ULTIPANEL
563609
#endif
564610

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+
565635
#ifdef ULTIPANEL
566636
// #define NEWPANEL //enable this if you have a click-encoder panel
567637
#define SDSUPPORT
@@ -595,6 +665,11 @@ const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic o
595665
// Increase the FAN pwm frequency. Removes the PWM noise but increases heating in the FET/Arduino
596666
//#define FAST_PWM_FAN
597667

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+
598673
// Use software PWM to drive the fan, as for the heaters. This uses a very low frequency
599674
// which is not ass annoying as with the hardware PWM. On the other hand, if this frequency
600675
// 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
616691
// Support for the BariCUDA Paste Extruder.
617692
//#define BARICUDA
618693

694+
//define BlinkM/CyzRgb Support
695+
//#define BLINKM
619696

620697
/*********************************************************************\
621698
* R/C SERVO support

0 commit comments

Comments
 (0)