@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.
@@ -60,6 +60,8 @@ export interface RecipeData {
60
60
  cameraId: number;
61
61
  cameraString: string;
62
62
  cameraSpeed: number;
63
+ usesBrushTool: boolean;
64
+ brushToolSpeed_RPM: number;
63
65
  }
64
66
  export declare enum CameraIds {
65
67
  NONE = 0,
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kuriousdesign/machine-sdk",
3
- "version": "1.0.104",
3
+ "version": "1.0.105",
4
4
  "description": "Shared data types and helpers for machine-related repositories",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -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,