Hey duvdev,
I'm not using a RAMBO anymore, so you'll want to fact-check this response. You'll need to update your Ext1 Steps per mm, and maybe reduce the drive current for Ext1 as well.
Firstly, if you've ordered the kysan 5.18:1 geared stepper, make sure you order the 8mm bore hobbed gear at the same time, the ezstruder hobbed gear will not fit.
You can change the steps per mm for your extruder in eeprom. I have mine set to 439.69.
You will want to go through the entire extruder calibration procedure from geneb's manual.
The kysan stepper spec says that it runs at a lower max current than the stock extruder stepper.
Kysan = 1.0 amps, Stock Wantai = 1.5 amps.
If you're finding that the geared stepper is running very hot, you may have to recompile your firmware to use a lower stepper current.
The relevant section in Configuration.h, extruder1 is the fourth value in the MOTOR_CURRENT {195,195,195,
200,0} line...
Code: Select all
// ##########################################################################################
// ## Movement settings ##
// ##########################################################################################
// Microstep setting (Only functional when stepper driver microstep pins are connected to MCU. Currently only works for RAMBO boards
#define MICROSTEP_MODES {16,16,16,16,16} // [1,2,4,8,16]
// Motor Current setting (Only functional when motor driver current ref pins are connected to a digital trimpot on supported boards)
#if MOTHERBOARD==301
#define MOTOR_CURRENT {195,195,195,200,0} // Values 0-255 (RAMBO 135 = ~0.75A, 185 = ~1A)
#elif MOTHERBOARD==12
#define MOTOR_CURRENT {35713,35713,35713,35713,35713} // Values 0-65535 (3D Master 35713 = ~1A)
#endif