Add CSM steps to new calibration wizard.

This commit is contained in:
Julian Stirling 2025-10-22 23:29:04 +01:00
parent 0ebc507eff
commit 5860b9be97
9 changed files with 194 additions and 15 deletions

View file

@ -0,0 +1,39 @@
<template>
<stepTemplateWithStream>
<p>
<b>Once you're ready, click Auto-Calibrate Using Camera.</b>
</p>
<template #below-stream>
<div class="action-button-container">
<CSMCalibrationSettings :show-extra-settings="false" />
</div>
</template>
</stepTemplateWithStream>
</template>
<script>
import stepTemplateWithStream from "../stepTemplateWithStream.vue"
import CSMCalibrationSettings from "../../../tabContentComponents/settingsComponents/CSMSettingsComponents/CSMCalibrationSettings.vue";
export default {
name: "cameraMainCalibrationStep",
components: {
stepTemplateWithStream,
CSMCalibrationSettings
},
computed: {
cameraUri: function() {
return `${this.$store.getters.baseUri}/camera/`;
}
}
}
</script>
<style scoped>
.action-button-container {
padding: 4px;
}
</style>