No, steppers are open loop control.
The firmware establishes "home" or 0, 0, 0 using the switches. From then on, the firmware tracks the steps away from 0, 0, 0 to know the nozzle's location.
No, steppers are open loop control.
The firmware establishes "home" or 0, 0, 0 using the switches. From then on, the firmware tracks the steps away from 0, 0, 0 to know the nozzle's location.
From the firmware source -
#define DEFAULT_AXIS_STEPS_PER_UNIT {78.7402,78.7402,200.0*8/3,760*1.1} // default steps per unit for Ultimaker
These values represent the X, Y, Z and extruder stepper motor steps per mm.
So if the gcode calls for the head to move in the X direction 100mm, the firmware will issue 7874 steps. If the gcode then has the head move back 50mm in teh X direction, the firmware assumes it is starting at 100mm and so steps in the reverse direction 3937 steps.
This works as long as what IRobertI mentioned is true. The steppers must be strong enough so that steps occur when requested. If the steppers "miss a step", the print will be off as there is no feedback that the miss has occurred.
Recommended Posts
IRobertI 521
There is no feedback. Generally you will use motors that are stronger than you need so that you can assume that when you tell the motor to move Xmm it will move Xmm. So after the firmware has established the home position it just assumes that the physical position of the head matches the "digital" position so to speak.
Link to post
Share on other sites