Calibrating a linear actuator
Calibrating a linear actuator
Connecting to the device
% Make an instance of the Haydon 43k4U linear stage class
>> tStage=haydon43K4U
tStage =
haydon43K4U with properties:
positionUnits: 'mm'
axisID: ''
invertDistance: 1
positionOffset: 0
controllerUnitsInMM: 1
axisName: []
minPos: []
maxPos: []
% That creates an instance of the class. This instance needs to be
% populated with reasonable settings:
>> tStage.minPos=0;
>> tStage.maxPos=40;
>> tStage.axisName='zAxis';
>> tStage.controllerUnitsInMM=1.5305E-4; % We'll show how to derive this laterCalibrating

Ensure repeatability is good
Last updated