{#each jointNames as jointName}
{@const currentValue = calibrationManager.calibrationState.getCurrentValue(jointName)}
{@const calibration = calibrationManager.calibrationState.getJointCalibration(jointName)}
{jointName}
{calibrationManager.calibrationState.formatServoValue(currentValue)}
Min: {calibrationManager.calibrationState.formatServoValue(calibration?.minServoValue)}
Max: {calibrationManager.calibrationState.formatServoValue(calibration?.maxServoValue)}
{#if calibration?.minServoValue !== undefined && calibration?.maxServoValue !== undefined && currentValue !== undefined}
{/if}