@duet3d/objectmodel 3.6.0-rc.4 → 3.6.0-rc.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
1
  import { ModelObject } from "..";
2
2
  export declare class BoardClosedLoopCurrentFraction extends ModelObject {
3
3
  avg: number;
4
- positionError: number;
4
+ max: number;
5
5
  }
6
6
  export declare class BoardClosedLoopPositionError extends ModelObject {
7
7
  max: number;
@@ -6,7 +6,7 @@ class BoardClosedLoopCurrentFraction extends __1.ModelObject {
6
6
  constructor() {
7
7
  super(...arguments);
8
8
  this.avg = 0;
9
- this.positionError = 0;
9
+ this.max = 0;
10
10
  }
11
11
  }
12
12
  exports.BoardClosedLoopCurrentFraction = BoardClosedLoopCurrentFraction;
@@ -13,6 +13,7 @@ export declare class TimesLeft extends ModelObject {
13
13
  filament: number | null;
14
14
  file: number | null;
15
15
  slicer: number | null;
16
+ toPause: number | null;
16
17
  }
17
18
  export declare class Job extends ModelObject {
18
19
  constructor();
package/dist/job/index.js CHANGED
@@ -36,6 +36,7 @@ class TimesLeft extends ModelObject_1.default {
36
36
  this.filament = null;
37
37
  this.file = null;
38
38
  this.slicer = null;
39
+ this.toPause = null;
39
40
  }
40
41
  }
41
42
  exports.TimesLeft = TimesLeft;
@@ -58,6 +58,7 @@ export declare class Axis extends ModelObject {
58
58
  minProbed: boolean;
59
59
  percentCurrent: number;
60
60
  percentStstCurrent: number | null;
61
+ phaseStep: boolean | null;
61
62
  printingJerk: number;
62
63
  reducedAcceleration: number;
63
64
  speed: number;
package/dist/move/Axis.js CHANGED
@@ -64,6 +64,7 @@ class Axis extends ModelObject_1.default {
64
64
  this.minProbed = false;
65
65
  this.percentCurrent = 100;
66
66
  this.percentStstCurrent = null;
67
+ this.phaseStep = null;
67
68
  this.printingJerk = 15;
68
69
  this.reducedAcceleration = 0;
69
70
  this.speed = 100;
@@ -19,6 +19,7 @@ export declare class Extruder extends ModelObject {
19
19
  readonly nonlinear: ExtruderNonlinear;
20
20
  percentCurrent: number;
21
21
  percentStstCurrent: number | null;
22
+ phaseStep: boolean | null;
22
23
  position: number;
23
24
  pressureAdvance: number;
24
25
  printingJerk: number;
@@ -27,6 +27,7 @@ class Extruder extends ModelObject_1.default {
27
27
  this.nonlinear = new ExtruderNonlinear();
28
28
  this.percentCurrent = 100;
29
29
  this.percentStstCurrent = null;
30
+ this.phaseStep = null;
30
31
  this.position = 0;
31
32
  this.pressureAdvance = 0;
32
33
  this.printingJerk = 15;
@@ -28,6 +28,7 @@ export declare class MoveRotation extends ModelObject {
28
28
  centre: Array<number>;
29
29
  }
30
30
  export declare class Move extends ModelObject {
31
+ accelerationTime: number | null;
31
32
  readonly axes: ModelCollection<Axis>;
32
33
  backlashFactor: number;
33
34
  readonly calibration: MoveCalibration;
@@ -45,6 +46,7 @@ export declare class Move extends ModelObject {
45
46
  readonly shaping: InputShaping;
46
47
  speedFactor: number;
47
48
  travelAcceleration: number;
49
+ usingSCurve: boolean | null;
48
50
  virtualEPos: number;
49
51
  workplaceNumber: number;
50
52
  }
@@ -63,6 +63,7 @@ exports.MoveRotation = MoveRotation;
63
63
  class Move extends ModelObject_1.default {
64
64
  constructor() {
65
65
  super(...arguments);
66
+ this.accelerationTime = null;
66
67
  this.axes = new ModelCollection_1.default(Axis_1.default);
67
68
  this.backlashFactor = 10;
68
69
  this.calibration = new MoveCalibration_1.default();
@@ -80,6 +81,7 @@ class Move extends ModelObject_1.default {
80
81
  this.shaping = new InputShaping_1.default();
81
82
  this.speedFactor = 1;
82
83
  this.travelAcceleration = 10000;
84
+ this.usingSCurve = null;
83
85
  this.virtualEPos = 0;
84
86
  this.workplaceNumber = 0;
85
87
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@duet3d/objectmodel",
3
- "version": "3.6.0-rc.4",
3
+ "version": "3.6.0-rc.7",
4
4
  "description": "TypeScript implementation of the Duet3D Object Model",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",