-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjoystick.graph.json
82 lines (82 loc) · 2.13 KB
/
joystick.graph.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"nodes": [
{
"name": "control",
"components": [
{
"name": "message_ledger",
"type": "isaac::alice::MessageLedger"
},
{
"name": "isaac.planner.DifferentialBaseControl",
"type": "isaac::planner::DifferentialBaseControl"
}
]
},
{
"name": "joystick",
"components": [
{
"name": "message_ledger",
"type": "isaac::alice::MessageLedger"
},
{
"name": "isaac.Joystick",
"type": "isaac::Joystick"
}
]
},
{
"name": "raspimouse_joystick",
"components": [
{
"name": "message_ledger",
"type": "isaac::alice::MessageLedger"
},
{
"name": "isaac.navigation.RobotRemoteControl",
"type": "isaac::navigation::RobotRemoteControl"
},
{
"name": "isaac.alice.FailsafeHeartbeat",
"type": "isaac::alice::FailsafeHeartbeat"
}
]
},
{
"name": "virtual_gamepad_bridge",
"components": [
{
"name": "message_ledger",
"type": "isaac::alice::MessageLedger"
},
{
"name": "VirtualGamepadBridge",
"type": "isaac::navigation::VirtualGamepadBridge"
}
]
}
],
"edges": [
{
"source": "joystick/isaac.Joystick/js_state",
"target": "raspimouse_joystick/isaac.navigation.RobotRemoteControl/js_state"
},
{
"source": "virtual_gamepad_bridge/VirtualGamepadBridge/joystick",
"target": "raspimouse_joystick/isaac.navigation.RobotRemoteControl/js_state"
},
{
"source": "virtual_gamepad_bridge/VirtualGamepadBridge/reply",
"target": "websight/WebsightServer/virtual_gamepad_reply"
},
{
"source": "raspimouse_joystick/isaac.navigation.RobotRemoteControl/segway_cmd",
"target": "base_simulation/isaac.flatsim.DifferentialBaseSimulator/diff_base_command"
},
{
"source": "control/isaac.planner.DifferentialBaseControl/cmd",
"target": "raspimouse_joystick/isaac.navigation.RobotRemoteControl/ctrl"
}
]
}