Skip to content

Commit 907edb6

Browse files
Minor tutorial tweaks (#77)
* Minor tutorial tweaks, update version numbers
1 parent 1e500b0 commit 907edb6

6 files changed

Lines changed: 5 additions & 357 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
.DS_Store
22
.idea
33
.vscode/
4-
*~
4+
tutorials/pick_and_place/PickAndPlaceProject/Packages/packages-lock.json

tutorials/pick_and_place/PickAndPlaceProject/Packages/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"com.unity.ide.visualstudio": "2.0.3",
66
"com.unity.ide.vscode": "1.2.2",
77
"com.unity.robotics.urdf-importer": "https://github.com/Unity-Technologies/URDF-Importer.git#v0.0.4",
8-
"com.unity.robotics.ros-tcp-connector": "https://github.com/Unity-Technologies/ROS-TCP-Connector.git#v0.0.3",
8+
"com.unity.robotics.ros-tcp-connector": "https://github.com/Unity-Technologies/ROS-TCP-Connector.git#v0.1.1",
99
"com.unity.test-framework": "1.1.18",
1010
"com.unity.textmeshpro": "3.0.1",
1111
"com.unity.timeline": "1.4.3",

tutorials/pick_and_place/PickAndPlaceProject/Packages/packages-lock.json

Lines changed: 0 additions & 350 deletions
This file was deleted.

tutorials/ros_unity_integration/publisher.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public class RosPublisherExample : MonoBehaviour
8282

8383
- Add a plane and a cube to the empty Unity scene
8484
- Move the cube a little ways up so it is hovering above the plane
85-
- Create an empty GameObject, name it `RosConnection` and attach the `Plugins/TcpConnector/ROSConnection` script.
85+
- Create an empty GameObject, name it `RosConnection` and attach the `ROS TCP Connection/Runtime/TcpConnector/ROSConnection` script.
8686
- Change the host name and port to match the ROS IP and port variables defined when you set up ROS
8787
- Create another empty GameObject, name it `RosPublisher` and attach the `RosPublisherExample` script.
8888
- Drag the cube GameObject onto the `Cube` parameter

tutorials/ros_unity_integration/setup.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,13 @@ Once ROS Core has started, it will print `started core service [/rosout]` to the
2626
```yaml
2727
ROS_IP: <your ROS IP>
2828
ROS_TCP_PORT: 10000
29-
rosdistro: 'melodic'
3029
```
3130
3231
e.g.
3332
3433
```yaml
35-
ROS_IP: 192.168.50.149
34+
ROS_IP: 127.0.0.1
3635
ROS_TCP_PORT: 10000
37-
rosdistro: 'melodic'
3836
```
3937
4038
Ensure that the `ROS_TCP_PORT` is set to 10000.

0 commit comments

Comments
 (0)