Skip to content

Commit 0d4b361

Browse files
committed
2 parents b8f3d69 + ca752a1 commit 0d4b361

File tree

4 files changed

+645
-437
lines changed

4 files changed

+645
-437
lines changed

src/components/calibration/GeneralConfigCard.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
<p class="help-text">Give your calibration a unique identifier</p>
1212
</div>
1313
<div class="custom-outline">
14-
<Slider :value="pointNumber" :min="Number(8)" :max="Number(8)" label="Calibration Points"
14+
<Slider :value="pointNumber" :min="Number(2)" :max="Number(9)" label="Calibration Points"
1515
@input="updatePointNumber" />
16-
<p class="help-text">Number of points to calibrate (9 points recommended)</p>
16+
<p class="help-text">Number of points to calibrate (4-9 points recommended)</p>
1717

1818
<Slider :value="samplePerPoint" :min="Number(90)" :max="Number(90)" label="Samples Per Point" @input="updateSamplePerPoint" />
1919
<p class="help-text">More samples = better accuracy but longer calibration</p>

src/store/calibration.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import router from "@/router";
44
export default {
55
state: {
66
calibName: "",
7-
pointNumber: 8,
7+
pointNumber: 9,
88
samplePerPoint: 90,
99
radius: 20,
1010
offset: 100,
@@ -134,7 +134,7 @@ export default {
134134
},
135135
resetAll(state) {
136136
state.calibName = "";
137-
state.pointNumber = 8;
137+
state.pointNumber = 9;
138138
state.samplePerPoint = 90;
139139
state.radius = 20;
140140
state.offset = 100;

0 commit comments

Comments
 (0)