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