@wandelbots/nova-js
Version:
Official JS client for the Wandelbots API
18 lines (16 loc) • 479 B
text/typescript
import type { RobotController } from "@wandelbots/nova-api/v2"
export const getRobotController = {
method: "GET",
path: "/cells/:cellId/controllers/:controllerId",
handle() {
return {
configuration: {
initial_joint_position: "[0,-1.571,-1.571,-1.571,1.571,-1.571,0]",
kind: "VirtualController",
manufacturer: "universalrobots",
type: "universalrobots-ur5e",
},
name: "mock-ur5",
} satisfies RobotController
},
}