@duet3d/objectmodel 3.7.0-rc.2 → 3.7.0-rc.3

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.
@@ -899,6 +899,7 @@
899
899
  "mcutemp": "MCU temperature",
900
900
  "drivers": "On-board stepper driver sensors",
901
901
  "driversduex": "Stepper driver sensors on the DueX expansion board",
902
+ "remote": "Sensor on a CAN-connected expansion board",
902
903
  "unknown": "Unknown temperature sensor"
903
904
  }
904
905
  },
@@ -1157,8 +1158,8 @@
1157
1158
  "tools": "List of configured tools",
1158
1159
  "tools[].active": "Active temperatures of the associated heaters (in C)",
1159
1160
  "tools[].axes": {
1160
- "summary": "Associated axes. At present only X and Y can be mapped per tool.",
1161
- "remarks": "The order is the same as the visual axes, so by default the layout is [ [0], // X [1] // Y ] Make sure to set each item individually so the change events are called. Each item is a bitmap represented as an array"
1161
+ "summary": "Associated axes. At present only X, Y and Z can be mapped per tool.",
1162
+ "remarks": "The order is the same as the visual axes, so by default the layout is [ [0], // X [1], // Y [2] // Z ] Make sure to set each item individually so the change events are called. Each item is a bitmap represented as an array"
1162
1163
  },
1163
1164
  "tools[].extruders": "Extruder drives of this tool",
1164
1165
  "tools[].fans": {
package/dist/enums.json CHANGED
@@ -235,6 +235,7 @@
235
235
  "mcutemp",
236
236
  "drivers",
237
237
  "driversduex",
238
+ "remote",
238
239
  "unknown"
239
240
  ],
240
241
  "sensors.endstops[].type": [
@@ -23,6 +23,7 @@ export declare enum AnalogSensorType {
23
23
  mcuTemp = "mcutemp",
24
24
  drivers = "drivers",
25
25
  driversDuex = "driversduex",
26
+ remote = "remote",
26
27
  unknown = "unknown"
27
28
  }
28
29
  export declare enum TemperatureError {
@@ -24,6 +24,7 @@ export var AnalogSensorType;
24
24
  AnalogSensorType["mcuTemp"] = "mcutemp";
25
25
  AnalogSensorType["drivers"] = "drivers";
26
26
  AnalogSensorType["driversDuex"] = "driversduex";
27
+ AnalogSensorType["remote"] = "remote";
27
28
  AnalogSensorType["unknown"] = "unknown";
28
29
  })(AnalogSensorType || (AnalogSensorType = {}));
29
30
  export var TemperatureError;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@duet3d/objectmodel",
3
- "version": "3.7.0-rc.2",
3
+ "version": "3.7.0-rc.3",
4
4
  "description": "TypeScript implementation of the Duet3D Object Model",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",