@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.
package/dist/documentation.json
CHANGED
|
@@ -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
|
|
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
|
@@ -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;
|