- Description
- Reviews
Replacement heater block kit for the Phaetus Rapido Plus Hotend HF & UHF
Features & Advantages
- Original Phaetus Rapido Plus upgrade kit
- PT1000 thermal sensor, max 350°C printing
- compatible with Rapido HF and UHF
- 24v voltage input
PT1000 firmware update
Marlin:
Default 4.7K pullup resistor please choose sensor '1047'
If you have replaced pullup with 1K resistor please choose sensor '1010'
Configuration.h:
*1047 : Pt1000 with 4.7K pullup
*1010 : Pt1000 with 1k pullup(non standard)
#define TEMP_SENSOR_0 1010
#define TEMP_SENSOR_1 0
#define TEMP_SENSOR_2 0
#define TEMP_SENSOR_3 0
#define TEMP_SENSOR_4 0
#define TEMP_SENSOR_BED 1
thermistortable_1010.h:
// Pt1000 with 1k pullup
const short temptable_1010[][2] PROGMEM = {
PtLine( 0, 1000, 1000)
PtLine( 25, 1000, 1000)
PtLine( 50, 1000, 1000)
PtLine( 75, 1000, 1000)
PtLine(100, 1000, 1000)
PtLine(125, 1000, 1000)
PtLine(150, 1000, 1000)
PtLine(175, 1000, 1000)
PtLine(200, 1000, 1000)
PtLine(225, 1000, 1000)
PtLine(250, 1000, 1000)
PtLine(275, 1000, 1000)
PtLine(300, 1000, 1000)
PtLine(325, 1000, 1000)
PtLine(350, 1000, 1000)
PtLine(375, 1000, 1000)
PtLine(400, 1000, 1000)
PtLine(425, 1000, 1000)
PtLine(450, 1000, 1000)
};
thermistortable_1047.h:
// Pt1000 with 4.7k pullup
const short temptable_1047[][2] PROGMEM = {
// only a few values are needed as the curve is very flat
PtLine( 0, 1000, 4700)
PtLine( 50, 1000, 4700)
PtLine(100, 1000, 4700)
PtLine(150, 1000, 4700)
PtLine(200, 1000, 4700)
PtLine(250, 1000, 4700)
PtLine(300, 1000, 4700)
PtLine(350, 1000, 4700)
PtLine(400, 1000, 4700)
PtLine(450, 1000, 4700)
};