This repository has been archived by the owner on May 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
roboMakerSettings.json
98 lines (98 loc) · 3.11 KB
/
roboMakerSettings.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"runConfigurations": [{
"id": "VoiceInteraction_Cfg01",
"name": "VoiceInteraction Robot",
"type": "colcon build",
"cfg": {
"workingDir": "./VoiceInteraction/robot_ws",
"cmdArgs": ""
}
}, {
"id": "VoiceInteraction_Cfg02",
"name": "VoiceInteraction Robot",
"type": "colcon bundle",
"cfg": {
"workingDir": "./VoiceInteraction/robot_ws",
"cmdArgs": ""
}
}, {
"id": "VoiceInteraction_Cfg03",
"name": "VoiceInteraction Simulation",
"type": "colcon build",
"cfg": {
"workingDir": "./VoiceInteraction/simulation_ws",
"cmdArgs": ""
}
}, {
"id": "VoiceInteraction_Cfg04",
"name": "VoiceInteraction Simulation",
"type": "colcon bundle",
"cfg": {
"workingDir": "./VoiceInteraction/simulation_ws",
"cmdArgs": ""
}
}, {
"id": "VoiceInteraction_SimulationJob1",
"name": "VoiceInteraction",
"type": "simulation",
"cfg": {
"robotApp": {
"name": "RoboMakerVoiceInteractionRobot",
"s3Bucket": "<bucket name for robot bundle>",
"sourceBundleFile": "./VoiceInteraction/robot_ws/bundle/output.tar",
"architecture": "X86_64",
"robotSoftwareSuite": {
"version": "<capitalised name of ROS distribution, e.g. Kinetic>",
"name": "ROS"
},
"launchConfig": {
"packageName": "voice_interaction_robot",
"launchFile": "voice_interaction.launch"
}
},
"simulationApp": {
"name": "RoboMakerVoiceInteractionSimulation",
"s3Bucket": "<bucket name for simulation bundle>",
"sourceBundleFile": "./VoiceInteraction/simulation_ws/bundle/output.tar",
"architecture": "X86_64",
"launchConfig": {
"packageName": "voice_interaction_simulation",
"launchFile": "bookstore.launch",
"environmentVariables":{
"TURTLEBOT3_MODEL":"waffle_pi"
}
},
"robotSoftwareSuite":{
"name":"ROS",
"version":"<capitalised name of ROS distribution, e.g. Kinetic>"
},
"simulationSoftwareSuite": {
"name": "Gazebo",
"version": "<gazebo version number, e.g. 7>"
},
"renderingEngine": {
"name": "OGRE",
"version": "1.x"
}
},
"simulation": {
"outputLocation": "<bucket name for job outputs>",
"failureBehavior": "Fail",
"maxJobDurationInSeconds": 28800,
"iamRole": "<your RoboMaker simulation job role ARN>",
"vpcConfig": {
"assignPublicIp": true,
"securityGroups": [ "<security group id>" ],
"subnets": [ "<subnet id>" ]
}
}
}
},
{
"id": "VoiceInteraction_wf1",
"type": "workflow",
"name": "VoiceInteraction - Build and Bundle All",
"runCfgIds": ["VoiceInteraction_Cfg01", "VoiceInteraction_Cfg02", "VoiceInteraction_Cfg03", "VoiceInteraction_Cfg04"]
}
]
}