@duet3d/objectmodel 3.6.0-rc.1 → 3.6.0-rc.2
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.
- package/dist/sensors/FilamentMonitors/LaserFilamentMonitor.d.ts +1 -0
- package/dist/sensors/FilamentMonitors/LaserFilamentMonitor.js +1 -0
- package/dist/sensors/FilamentMonitors/PulsedFilamentMonitor.d.ts +1 -0
- package/dist/sensors/FilamentMonitors/PulsedFilamentMonitor.js +1 -0
- package/package.json +1 -1
|
@@ -17,6 +17,7 @@ export declare class LaserFilamentMonitor extends Duet3DFilamentMonitor {
|
|
|
17
17
|
constructor();
|
|
18
18
|
calibrated: LaserFilamentMonitorCalibrated | null;
|
|
19
19
|
readonly configured: LaserFilamentMonitorConfigured;
|
|
20
|
+
position: number;
|
|
20
21
|
update(jsonElement: any): IModelObject | null;
|
|
21
22
|
}
|
|
22
23
|
export default LaserFilamentMonitor;
|
|
@@ -31,6 +31,7 @@ class LaserFilamentMonitor extends Duet3DFilamentMonitor_1.Duet3DFilamentMonitor
|
|
|
31
31
|
super(FilamentMonitorBase_1.FilamentMonitorType.laser);
|
|
32
32
|
this.calibrated = new LaserFilamentMonitorCalibrated();
|
|
33
33
|
this.configured = new LaserFilamentMonitorConfigured();
|
|
34
|
+
this.position = 0;
|
|
34
35
|
ModelObject_1.default.wrapModelProperty(this, "calibrated", LaserFilamentMonitorCalibrated);
|
|
35
36
|
}
|
|
36
37
|
update(jsonElement) {
|
|
@@ -16,6 +16,7 @@ export declare class PulsedFilamentMonitor extends FilamentMonitorBase {
|
|
|
16
16
|
constructor();
|
|
17
17
|
calibrated: PulsedFilamentMonitorCalibrated | null;
|
|
18
18
|
readonly configured: PulsedFilamentMonitorConfigured;
|
|
19
|
+
position: number;
|
|
19
20
|
update(jsonElement: any): IModelObject | null;
|
|
20
21
|
}
|
|
21
22
|
export default PulsedFilamentMonitor;
|
|
@@ -29,6 +29,7 @@ class PulsedFilamentMonitor extends FilamentMonitorBase_1.default {
|
|
|
29
29
|
super(FilamentMonitorBase_1.FilamentMonitorType.pulsed);
|
|
30
30
|
this.calibrated = new PulsedFilamentMonitorCalibrated();
|
|
31
31
|
this.configured = new PulsedFilamentMonitorConfigured();
|
|
32
|
+
this.position = 0;
|
|
32
33
|
ModelObject_1.default.wrapModelProperty(this, "calibrated", PulsedFilamentMonitorCalibrated);
|
|
33
34
|
}
|
|
34
35
|
update(jsonElement) {
|