Updates to i2c. Up to 8 extruders

This commit is contained in:
Scott Lahteine 2020-01-21 01:40:47 -06:00
parent 86cc5191a9
commit a1ad8cff9f
297 changed files with 10117 additions and 573 deletions

View file

@ -143,7 +143,7 @@
// @section extruder
// This defines the number of extruders
// :[1, 2, 3, 4, 5, 6]
// :[1, 2, 3, 4, 5, 6, 7, 8]
#define EXTRUDERS 1
// Generally expected filament diameter (1.75, 2.85, 3.0, ...). Used for Volumetric, Filament Width Sensor, etc.
@ -411,6 +411,8 @@
#define TEMP_SENSOR_3 0
#define TEMP_SENSOR_4 0
#define TEMP_SENSOR_5 0
#define TEMP_SENSOR_6 0
#define TEMP_SENSOR_7 0
#define TEMP_SENSOR_BED 1
#define TEMP_SENSOR_PROBE 0
#define TEMP_SENSOR_CHAMBER 0
@ -440,6 +442,8 @@
#define HEATER_3_MINTEMP 0
#define HEATER_4_MINTEMP 0
#define HEATER_5_MINTEMP 0
#define HEATER_6_MINTEMP 0
#define HEATER_7_MINTEMP 0
#define BED_MINTEMP 0
// Above this temperature the heater will be switched off.
@ -451,6 +455,8 @@
#define HEATER_3_MAXTEMP 275
#define HEATER_4_MAXTEMP 275
#define HEATER_5_MAXTEMP 275
#define HEATER_6_MAXTEMP 275
#define HEATER_7_MAXTEMP 275
#define BED_MAXTEMP 150
//===========================================================================
@ -660,6 +666,8 @@
//#define E3_DRIVER_TYPE A4988
//#define E4_DRIVER_TYPE A4988
//#define E5_DRIVER_TYPE A4988
//#define E6_DRIVER_TYPE A4988
//#define E7_DRIVER_TYPE A4988
// Enable this feature if all enabled endstop pins are interrupt-capable.
// This will remove the need to poll the interrupt pins, saving many CPU cycles.