@duet3d/objectmodel 3.7.0-beta.16 → 3.7.0-beta.17

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.
@@ -5,7 +5,9 @@ import Driver from "./Driver";
5
5
  export declare class Accelerometer extends ModelObject {
6
6
  orientation: number;
7
7
  points: number;
8
+ resolution: number;
8
9
  runs: number;
10
+ samplingRate: number;
9
11
  }
10
12
  export declare class BoardClosedLoop extends ModelObject {
11
13
  points: number;
@@ -7,7 +7,9 @@ export class Accelerometer extends ModelObject {
7
7
  super(...arguments);
8
8
  this.orientation = 20;
9
9
  this.points = 0;
10
+ this.resolution = 0;
10
11
  this.runs = 0;
12
+ this.samplingRate = 0;
11
13
  }
12
14
  }
13
15
  export class BoardClosedLoop extends ModelObject {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@duet3d/objectmodel",
3
- "version": "3.7.0-beta.16",
3
+ "version": "3.7.0-beta.17",
4
4
  "description": "TypeScript implementation of the Duet3D Object Model",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",