@duet3d/objectmodel 3.5.0-rc.7 → 3.5.0-rc.8

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.
@@ -12,6 +12,7 @@ export declare enum InputChannelState {
12
12
  reading = "reading"
13
13
  }
14
14
  export declare class InputChannel extends ModelObject {
15
+ active: boolean;
15
16
  axesRelative: boolean;
16
17
  compatibility: Compatibility;
17
18
  distanceUnit: DistanceUnit;
@@ -19,6 +19,7 @@ var InputChannelState;
19
19
  class InputChannel extends ModelObject_1.default {
20
20
  constructor() {
21
21
  super(...arguments);
22
+ this.active = true;
22
23
  this.axesRelative = false;
23
24
  this.compatibility = Compatibility_1.default.RepRapFirmware;
24
25
  this.distanceUnit = DistanceUnit.mm;
@@ -27,6 +27,7 @@ export declare class Probe extends ModelObject {
27
27
  isCalibrated: boolean | null;
28
28
  lastStopHeight: number;
29
29
  maxProbeCount: number;
30
+ measuredHeight: number | null;
30
31
  offsets: Array<number>;
31
32
  recoveryTime: number;
32
33
  scanCoefficients: Array<number> | null;
@@ -33,6 +33,7 @@ class Probe extends ModelObject_1.default {
33
33
  this.isCalibrated = null;
34
34
  this.lastStopHeight = 0;
35
35
  this.maxProbeCount = 1;
36
+ this.measuredHeight = null;
36
37
  this.offsets = [0, 0];
37
38
  this.recoveryTime = 0;
38
39
  this.scanCoefficients = null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@duet3d/objectmodel",
3
- "version": "3.5.0-rc.7",
3
+ "version": "3.5.0-rc.8",
4
4
  "description": "TypeScript implementation of the Duet3D Object Model",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",