@kuriousdesign/machine-sdk 1.0.104 → 1.0.105
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.
|
@@ -150,6 +150,8 @@ exports.initialRecipe = {
|
|
|
150
150
|
applicatorToolId: ApplicatorTools.NONE,
|
|
151
151
|
applicatorToolString: exports.applicatorToolIdToStringMap.get(ApplicatorTools.NONE) || "",
|
|
152
152
|
applicatorCollisionPayloadOffset: 0,
|
|
153
|
+
usesBrushTool: false,
|
|
154
|
+
brushToolSpeed_RPM: 0,
|
|
153
155
|
cleanerId: Cleaners.NONE,
|
|
154
156
|
cleanerString: exports.cleanerIdToStringMap.get(Cleaners.NONE) || "",
|
|
155
157
|
weighingFingerId: WeighingFingers.NONE,
|
package/package.json
CHANGED
|
@@ -108,6 +108,9 @@ export interface RecipeData {
|
|
|
108
108
|
cameraId: number;
|
|
109
109
|
cameraString: string;
|
|
110
110
|
cameraSpeed: number;
|
|
111
|
+
|
|
112
|
+
usesBrushTool: boolean;
|
|
113
|
+
brushToolSpeed_RPM: number;
|
|
111
114
|
}
|
|
112
115
|
|
|
113
116
|
export enum CameraIds {
|
|
@@ -235,6 +238,8 @@ export const initialRecipe: RecipeData = {
|
|
|
235
238
|
applicatorToolId: ApplicatorTools.NONE,
|
|
236
239
|
applicatorToolString: applicatorToolIdToStringMap.get(ApplicatorTools.NONE) || "",
|
|
237
240
|
applicatorCollisionPayloadOffset: 0,
|
|
241
|
+
usesBrushTool: false,
|
|
242
|
+
brushToolSpeed_RPM: 0,
|
|
238
243
|
cleanerId: Cleaners.NONE,
|
|
239
244
|
cleanerString: cleanerIdToStringMap.get(Cleaners.NONE) || "",
|
|
240
245
|
weighingFingerId: WeighingFingers.NONE,
|