@wandelbots/wandelbots-js-react-components 1.17.1 → 1.17.2
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/package.json
CHANGED
|
@@ -203,6 +203,18 @@ export class JoggingStore {
|
|
|
203
203
|
this.activationError = null
|
|
204
204
|
})
|
|
205
205
|
|
|
206
|
+
// Setting mode control makes jogging startup slightly faster
|
|
207
|
+
// on physical robots
|
|
208
|
+
// https://wandelbots.slack.com/archives/C06VA4J59PF/p1725523765976109?thread_ts=1725464963.859559&cid=C06VA4J59PF
|
|
209
|
+
try {
|
|
210
|
+
await this.jogger.nova.api.controller.setDefaultMode(
|
|
211
|
+
this.jogger.motionStream.controllerId,
|
|
212
|
+
"MODE_CONTROL",
|
|
213
|
+
)
|
|
214
|
+
} catch (err) {
|
|
215
|
+
console.error(err)
|
|
216
|
+
}
|
|
217
|
+
|
|
206
218
|
if (currentTab.id === "cartesian") {
|
|
207
219
|
const cartesianJoggingOpts = {
|
|
208
220
|
tcpId: selectedTcpId,
|