Compare commits

...

8 Commits

Author SHA1 Message Date
dave b884bdf19c Merge branch 'dpedu/geeetechi3-skr3-rebsae' into dpedu/geeetechi3-skr3 2024-01-25 20:16:13 -08:00
dave 303b95fde3 check in misc changes 2024-01-25 20:13:53 -08:00
dave edc6cdc34c base config 2020-02-18 23:03:12 -08:00
dave 749a8e837f less aggressive temp alarm 2020-02-18 21:27:09 -08:00
dave 4f804f297d Revert "swap X onto E1 for dead axis workaround"
This reverts commit b0f26ea457.
2020-01-04 12:44:10 -08:00
dave fe64bcec3e raise temps 2020-01-04 12:43:15 -08:00
dave b0f26ea457 swap X onto E1 for dead axis workaround 2019-11-29 20:51:45 -08:00
dave 5835c45049 customizations for my printer 2019-11-29 20:50:52 -08:00
2 changed files with 8 additions and 7 deletions

View File

@ -130,11 +130,11 @@
// Choose the name from boards.h that matches your setup
#ifndef MOTHERBOARD
#define MOTHERBOARD BOARD_BIGTREE_SKR_V1_3
#define MOTHERBOARD BOARD_BTT_SKR_V1_3
#endif
// Name displayed in the LCD "Ready" message and Info menu
#define CUSTOM_MACHINE_NAME "Gigatron, idk"
#define CUSTOM_MACHINE_NAME "Ass Machine 4.0"
// Printer's unique ID, used by some programs to differentiate between machines.
// Choose your own or use a service like http://www.uuidgenerator.net/version4
@ -407,7 +407,7 @@
* 998 : Dummy Table that ALWAYS reads 25°C or the temperature defined below.
* 999 : Dummy Table that ALWAYS reads 100°C or the temperature defined below.
*/
#define TEMP_SENSOR_0 1
#define TEMP_SENSOR_0 11
#define TEMP_SENSOR_1 0
#define TEMP_SENSOR_2 0
#define TEMP_SENSOR_3 0
@ -416,7 +416,7 @@
#define TEMP_SENSOR_6 0
#define TEMP_SENSOR_7 0
#define TEMP_SENSOR_PROBE 0
#define TEMP_SENSOR_BED 0
#define TEMP_SENSOR_BED 1
#define TEMP_SENSOR_CHAMBER 0
// Dummy thermistor constant temperature readings, for use with 998 and 999
@ -459,7 +459,8 @@
#define HEATER_5_MAXTEMP 275
#define HEATER_6_MAXTEMP 275
#define HEATER_7_MAXTEMP 275
#define BED_MAXTEMP 70
#define BED_MAXTEMP 85
// #define BED_MAXTEMP 120
//===========================================================================
//============================= PID Settings ================================
@ -733,7 +734,7 @@
* Override with M92
* X, Y, Z, E0 [, E1[, E2...]]
*/
#define DEFAULT_AXIS_STEPS_PER_UNIT { 80, 80, 2560, 93 } // 400
#define DEFAULT_AXIS_STEPS_PER_UNIT { 80, 80, 400, 93 } // 400
// Z = 2560 for old threaded rods
// Z = 400 for the leadscrews i have

View File

@ -150,7 +150,7 @@
*/
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
#define THERMAL_PROTECTION_PERIOD 90 // Seconds
#define THERMAL_PROTECTION_HYSTERESIS 2 // Degrees Celsius
#define THERMAL_PROTECTION_HYSTERESIS 15 // Degrees Celsius
//#define ADAPTIVE_FAN_SLOWING // Slow part cooling fan if temperature drops
#if BOTH(ADAPTIVE_FAN_SLOWING, PIDTEMP)