@@ -40,38 +40,38 @@ game. We will start by running the `snakesim` package to see what we will
40
40
be controlling. Run the following commands to open our 'dockerized'
41
41
environment:
42
42
43
- ```
43
+ ``` bash
44
44
./src/arc_tutorials/docker/docker-build.sh
45
45
```
46
46
then
47
- ```
47
+ ``` bash
48
48
./src/arc_tutorials/docker/docker-run.sh
49
49
```
50
50
51
51
You should now be running a shell within our ARC development container. To
52
52
verify that your workspace is correct, run:
53
53
54
- ```
54
+ ``` bash
55
55
ls catkin_ws
56
56
```
57
57
If everything is correct, you should simply see a ` src/ ` folder. Let's now
58
58
move into our workspace by running:
59
59
60
- ```
60
+ ``` bash
61
61
cd catkin_ws
62
62
```
63
63
64
64
Now we need to build our workspace, which will setup our environment
65
65
to run packages. This will all be explained in the next section, so hang
66
66
in there. We do this with the command:
67
67
68
- ```
68
+ ``` bash
69
69
catkin build
70
70
```
71
71
72
72
Now if we print our directory contents again:
73
73
74
- ```
74
+ ``` bash
75
75
ls
76
76
```
77
77
@@ -81,7 +81,7 @@ also important for configuring our environment.
81
81
Again this will be covered in the next section, so just run these
82
82
commands and it will make sense soon.
83
83
84
- ```
84
+ ``` bash
85
85
source devel/setup.bash
86
86
```
87
87
@@ -90,7 +90,7 @@ packages we have stored.
90
90
91
91
Lets start by moving into our package directory:
92
92
93
- ```
93
+ ``` bash
94
94
cd src/arc_tutorials
95
95
```
96
96
@@ -109,7 +109,7 @@ don't have to do it manually.
109
109
110
110
To run the launch file:
111
111
112
- ```
112
+ ``` bash
113
113
roslaunch snakesim snakesim.launch
114
114
```
115
115
@@ -140,7 +140,7 @@ example to see what we are building towards.
140
140
141
141
Again we will use a launch file:
142
142
143
- ```
143
+ ``` bash
144
144
roslaunch snake_tutorial snake.launch
145
145
```
146
146
0 commit comments