Skip to content

Commit

Permalink
SL1SW-2319: fix: sla: exposure: corect exposure times to match touch-ui
Browse files Browse the repository at this point in the history
  • Loading branch information
filipkotoucek committed Sep 12, 2024
1 parent ae51b72 commit aa75fb7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/printer/views/exposure.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ let pressed = false;
const config = {
exposureTime: {
text: translate("exp-times.exp-time"),
limit: [1000, 60000],
limit: [100, 60000],
step: 100,
},
exposureTimeCalibration: {
Expand All @@ -28,8 +28,8 @@ const config = {
},
exposureTimeFirst: {
text: translate("exp-times.layer-1st"),
limit: [10000, 120000],
step: 1000,
limit: [100, 120000],
step: 100,
},
exposureUserProfile: {
text: translate("exp-times.profile"),
Expand Down
6 changes: 3 additions & 3 deletions tools/server/mock/sla.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ class PrinterSLA extends Printer {
this.exposureTimeCalibration = 3000;
this.exposureUserProfile = 0;
this.limits = {
exposureTime: { min: 1000, max: 60000 },
exposureTimeFirst: { min: 10000, max: 120000 },
exposureTimeCalibration: { min: 500, max: 5000 },
exposureTime: { min: 100, max: 60000 },
exposureTimeFirst: { min: 100, max: 120000 },
exposureTimeCalibration: { min: 100, max: 5000 },
exposureUserProfile: { min: 0, max: 2 },
};
}
Expand Down

0 comments on commit aa75fb7

Please sign in to comment.