So I'm building a printer by myself and I'm stuck in setting it up.
I use:
- Arduino Due, RADDS, RAPS128, Hexagon Hotend with 100k EPCOS thermistor ( I don't have other thermistors)
- Arduino IDE, Marlin4Due, Pronterface, MacOS 10.13.6
I upload the frimware to arduino from Arduino IDE. I have selected correct ports etc in Arduino IDE and in Pronterface. When i click "connect" in Proterface i get the following message. I don't see anything else and i can't adjust or test anything(pic attached) :
Connecting...
start
Printer is now online.
echo:Marlin 1.0.3 dev
echo: Last Updated: 2015-06-00 12:00 | Author: (none, default config)
Compiled: Mar 13 2020
echo: Free Memory: 90348 PlannerBufferBytes: 1344
echo:Hardcoded Default Settings Loaded
echo: Steps per unit:
echo: M92 X384.00 Y533.00 Z960.00 E1980.00
echo:Maximum feedrates (mm/s):
echo: M203 X200.00 Y200.00 Z2.00 E20.00
echo:Maximum Acceleration (mm/s2):
echo: M201 X3000 Y3000 Z100 E10000
echo:Accelerations: P=printing, R=retract and T=travel
echo: M204 P3000.00 R3000.00 T3000.00
echo:Advanced variables: S=Min feedrate (mm/s), T=Min travel feedrate (mm/s), B=minimum segment time (ms), X=maximum XY jerk (mm/s), Z=maximum Z jerk (mm/s), E=maximum E jerk (mm/s)
echo: M205 S0.00 T0.00 B20000 X10.00 Z0.30 E2.00
echo:Home offset (mm):
echo: M206 X0.00 Y0.00 Z0.00
echo: PID settings:
echo: M301 P22.20 I1.08 D114.00 C1.00
echo:Filament settings: Disabled
First start for temperature finished.
Error: MINTEMP triggered, system stopped! Heater_ID: 0
[ERROR] Error: MINTEMP triggered, system stopped! Heater_ID: 0
Error: Printer halted. kill() called!
[ERROR] Error: Printer halted. kill() called!
I have tested the thermistor from the connectors that connect to RADDS and it gives me 116kOhm.
I have baudrate on 25000 on both ends.
Can anyone help me to resolve the problem or understand it? What might cause it if the thermistor is allright?
In Marlin4Due i have:
- no edits in the software. Only basic firmware configuration. These are the temperature settings. You can not change TEMP_SENSOR_0 to 0. I have tried having TEMP_SENSOR_0 1 and TEMP_SENSOR_1 to 1. I have also tried "#define HEATER_0_MINTEMP 1" "#define HEATER_0_MINTEMP 25" etc:
#define TEMP_SENSOR_0 1
#define TEMP_SENSOR_1 0
#define TEMP_SENSOR_2 0
#define TEMP_SENSOR_3 0
#define TEMP_SENSOR_BED 0
// 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.
//#define TEMP_SENSOR_1_AS_REDUNDANT
#define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
// Actual temperature must be close to target for this long before M109 returns success
#define TEMP_RESIDENCY_TIME 10 // (seconds)
#define TEMP_HYSTERESIS 3 // (degC) range of +/- temperatures considered "close" to the target one
#define TEMP_WINDOW 1 // (degC) Window around target to start the residency timer x degC early.
// The minimal temperature defines the temperature below which the heater will not be enabled It is used
// to check that the wiring to the thermistor is not broken.
// Otherwise this would lead to the heater being powered on all the time.
#define HEATER_0_MINTEMP 5
#define HEATER_1_MINTEMP 5
#define HEATER_2_MINTEMP 5
#define HEATER_3_MINTEMP 5
#define BED_MINTEMP 5
I use:
- Arduino Due, RADDS, RAPS128, Hexagon Hotend with 100k EPCOS thermistor ( I don't have other thermistors)
- Arduino IDE, Marlin4Due, Pronterface, MacOS 10.13.6
I upload the frimware to arduino from Arduino IDE. I have selected correct ports etc in Arduino IDE and in Pronterface. When i click "connect" in Proterface i get the following message. I don't see anything else and i can't adjust or test anything(pic attached) :
Connecting...
start
Printer is now online.
echo:Marlin 1.0.3 dev
echo: Last Updated: 2015-06-00 12:00 | Author: (none, default config)
Compiled: Mar 13 2020
echo: Free Memory: 90348 PlannerBufferBytes: 1344
echo:Hardcoded Default Settings Loaded
echo: Steps per unit:
echo: M92 X384.00 Y533.00 Z960.00 E1980.00
echo:Maximum feedrates (mm/s):
echo: M203 X200.00 Y200.00 Z2.00 E20.00
echo:Maximum Acceleration (mm/s2):
echo: M201 X3000 Y3000 Z100 E10000
echo:Accelerations: P=printing, R=retract and T=travel
echo: M204 P3000.00 R3000.00 T3000.00
echo:Advanced variables: S=Min feedrate (mm/s), T=Min travel feedrate (mm/s), B=minimum segment time (ms), X=maximum XY jerk (mm/s), Z=maximum Z jerk (mm/s), E=maximum E jerk (mm/s)
echo: M205 S0.00 T0.00 B20000 X10.00 Z0.30 E2.00
echo:Home offset (mm):
echo: M206 X0.00 Y0.00 Z0.00
echo: PID settings:
echo: M301 P22.20 I1.08 D114.00 C1.00
echo:Filament settings: Disabled
First start for temperature finished.
Error: MINTEMP triggered, system stopped! Heater_ID: 0
[ERROR] Error: MINTEMP triggered, system stopped! Heater_ID: 0
Error: Printer halted. kill() called!
[ERROR] Error: Printer halted. kill() called!
I have tested the thermistor from the connectors that connect to RADDS and it gives me 116kOhm.
I have baudrate on 25000 on both ends.
Can anyone help me to resolve the problem or understand it? What might cause it if the thermistor is allright?
In Marlin4Due i have:
- no edits in the software. Only basic firmware configuration. These are the temperature settings. You can not change TEMP_SENSOR_0 to 0. I have tried having TEMP_SENSOR_0 1 and TEMP_SENSOR_1 to 1. I have also tried "#define HEATER_0_MINTEMP 1" "#define HEATER_0_MINTEMP 25" etc:
#define TEMP_SENSOR_0 1
#define TEMP_SENSOR_1 0
#define TEMP_SENSOR_2 0
#define TEMP_SENSOR_3 0
#define TEMP_SENSOR_BED 0
// 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.
//#define TEMP_SENSOR_1_AS_REDUNDANT
#define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
// Actual temperature must be close to target for this long before M109 returns success
#define TEMP_RESIDENCY_TIME 10 // (seconds)
#define TEMP_HYSTERESIS 3 // (degC) range of +/- temperatures considered "close" to the target one
#define TEMP_WINDOW 1 // (degC) Window around target to start the residency timer x degC early.
// The minimal temperature defines the temperature below which the heater will not be enabled It is used
// to check that the wiring to the thermistor is not broken.
// Otherwise this would lead to the heater being powered on all the time.
#define HEATER_0_MINTEMP 5
#define HEATER_1_MINTEMP 5
#define HEATER_2_MINTEMP 5
#define HEATER_3_MINTEMP 5
#define BED_MINTEMP 5