@duet3d/objectmodel 3.7.0-beta.17 → 3.7.0-beta.19
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/documentation.json
CHANGED
|
@@ -9,7 +9,12 @@
|
|
|
9
9
|
"remarks": "See https://docs.duet3d.com/en/Duet3D_hardware/Accessories/Duet3D_Accelerometer#orientation for a list of orientations"
|
|
10
10
|
},
|
|
11
11
|
"boards[].accelerometer.points": "Number of collected data points in the last run or 0 if it failed",
|
|
12
|
+
"boards[].accelerometer.resolution": "Resolution the accelerometer is programmed for (in bits) or 0 if unknown",
|
|
12
13
|
"boards[].accelerometer.runs": "Number of completed sampling runs",
|
|
14
|
+
"boards[].accelerometer.samplingRate": {
|
|
15
|
+
"summary": "Rate the accelerometer is programmed for (in Hz) or 0 if unknown",
|
|
16
|
+
"remarks": "This is the rate the accelerometer settled on, which may be lower than the one M955 asked for. Once it has completed a run, the rate measured during that run is reported instead"
|
|
17
|
+
},
|
|
13
18
|
"boards[].canAddress": "CAN address of this board or null if not applicable",
|
|
14
19
|
"boards[].closedLoop": "Closed loop data of this board or null if unknown",
|
|
15
20
|
"boards[].closedLoop.points": "Number of collected data points in the last run or 0 if it failed",
|
|
@@ -551,12 +556,12 @@
|
|
|
551
556
|
"coreXYUV": "CoreXY with extra UV axes",
|
|
552
557
|
"coreXZ": "CoreXZ",
|
|
553
558
|
"markForged": "MarkForged",
|
|
554
|
-
"
|
|
555
|
-
"
|
|
556
|
-
"
|
|
557
|
-
"
|
|
558
|
-
"
|
|
559
|
-
"
|
|
559
|
+
"FiveBarScara": "Five-bar SCARA",
|
|
560
|
+
"Hangprinter": "Hangprinter",
|
|
561
|
+
"delta": "Linear delta",
|
|
562
|
+
"Polar": "Polar",
|
|
563
|
+
"Rotary delta": "Rotary delta",
|
|
564
|
+
"Scara": "SCARA",
|
|
560
565
|
"unknown": "Unknown"
|
|
561
566
|
}
|
|
562
567
|
},
|
|
@@ -590,6 +595,7 @@
|
|
|
590
595
|
"move.kinematics.yOffset": "Y offset (in mm)",
|
|
591
596
|
"move.kinematics.yTilt": "How much Z needs to be raised for each unit of movement in the +Y direction",
|
|
592
597
|
"move.limitAxes": "Limit axis positions by their minima and maxima",
|
|
598
|
+
"move.minSpeed": "Minimum allowed movement speed (in mm/min)",
|
|
593
599
|
"move.motionSystems": "List of configured motion systems",
|
|
594
600
|
"move.motionSystems[].currentMove": "Information about the current move",
|
|
595
601
|
"move.motionSystems[].currentMove.acceleration": "Acceleration of the current move (in mm/s^2)",
|
package/dist/enums.json
CHANGED
|
@@ -127,12 +127,12 @@
|
|
|
127
127
|
"coreXYUV",
|
|
128
128
|
"coreXZ",
|
|
129
129
|
"markForged",
|
|
130
|
-
"
|
|
131
|
-
"
|
|
132
|
-
"
|
|
133
|
-
"
|
|
134
|
-
"
|
|
135
|
-
"
|
|
130
|
+
"FiveBarScara",
|
|
131
|
+
"Hangprinter",
|
|
132
|
+
"delta",
|
|
133
|
+
"Polar",
|
|
134
|
+
"Rotary delta",
|
|
135
|
+
"Scara",
|
|
136
136
|
"unknown"
|
|
137
137
|
],
|
|
138
138
|
"move.shaping.type": [
|
package/dist/move/index.d.ts
CHANGED
|
@@ -43,6 +43,7 @@ export declare class Move extends ModelObject {
|
|
|
43
43
|
readonly keepout: ModelCollection<KeepoutZone | null>;
|
|
44
44
|
kinematics: Kinematics;
|
|
45
45
|
limitAxes: boolean;
|
|
46
|
+
minSpeed: number;
|
|
46
47
|
noMovesBeforeHoming: boolean;
|
|
47
48
|
readonly motionSystems: ModelCollection<MotionSystem>;
|
|
48
49
|
/**
|
package/dist/move/index.js
CHANGED
|
@@ -57,6 +57,7 @@ export class Move extends ModelObject {
|
|
|
57
57
|
this.keepout = new ModelCollection(KeepoutZone);
|
|
58
58
|
this.kinematics = new CoreKinematics(KinematicsName.cartesian);
|
|
59
59
|
this.limitAxes = true;
|
|
60
|
+
this.minSpeed = 30;
|
|
60
61
|
this.noMovesBeforeHoming = true;
|
|
61
62
|
this.motionSystems = new ModelCollection(MotionSystem);
|
|
62
63
|
/**
|
|
@@ -6,12 +6,12 @@ export declare enum KinematicsName {
|
|
|
6
6
|
coreXYUV = "coreXYUV",
|
|
7
7
|
coreXZ = "coreXZ",
|
|
8
8
|
markForged = "markForged",
|
|
9
|
-
fiveBarScara = "
|
|
10
|
-
hangprinter = "
|
|
11
|
-
linearDelta = "
|
|
12
|
-
polar = "
|
|
13
|
-
rotaryDelta = "
|
|
14
|
-
scara = "
|
|
9
|
+
fiveBarScara = "FiveBarScara",
|
|
10
|
+
hangprinter = "Hangprinter",
|
|
11
|
+
linearDelta = "delta",
|
|
12
|
+
polar = "Polar",
|
|
13
|
+
rotaryDelta = "Rotary delta",
|
|
14
|
+
scara = "Scara",
|
|
15
15
|
unknown = "unknown"
|
|
16
16
|
}
|
|
17
17
|
export declare class MoveSegmentation extends ModelObject {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import ModelObject from "../../ModelObject";
|
|
2
|
+
// Values are the spellings reported by RepRapFirmware, which are inconsistently capitalized
|
|
2
3
|
export var KinematicsName;
|
|
3
4
|
(function (KinematicsName) {
|
|
4
5
|
KinematicsName["cartesian"] = "cartesian";
|
|
@@ -7,12 +8,12 @@ export var KinematicsName;
|
|
|
7
8
|
KinematicsName["coreXYUV"] = "coreXYUV";
|
|
8
9
|
KinematicsName["coreXZ"] = "coreXZ";
|
|
9
10
|
KinematicsName["markForged"] = "markForged";
|
|
10
|
-
KinematicsName["fiveBarScara"] = "
|
|
11
|
-
KinematicsName["hangprinter"] = "
|
|
12
|
-
KinematicsName["linearDelta"] = "
|
|
13
|
-
KinematicsName["polar"] = "
|
|
14
|
-
KinematicsName["rotaryDelta"] = "
|
|
15
|
-
KinematicsName["scara"] = "
|
|
11
|
+
KinematicsName["fiveBarScara"] = "FiveBarScara";
|
|
12
|
+
KinematicsName["hangprinter"] = "Hangprinter";
|
|
13
|
+
KinematicsName["linearDelta"] = "delta";
|
|
14
|
+
KinematicsName["polar"] = "Polar";
|
|
15
|
+
KinematicsName["rotaryDelta"] = "Rotary delta";
|
|
16
|
+
KinematicsName["scara"] = "Scara";
|
|
16
17
|
KinematicsName["unknown"] = "unknown";
|
|
17
18
|
})(KinematicsName || (KinematicsName = {}));
|
|
18
19
|
export class MoveSegmentation extends ModelObject {
|