2. Getting Started
2.1. Before starting the module
To start using this bridge, you need to start a roscore locally on our desktop computer and then, to communicate your external roscore IP on your robot. Start a ROScore (on your desktop machine)
$ ROS_IP=<yourDesktopIP> roscore
The ROS_IP parameter is optional in case your local network supports a fully functional DNS. You can easily verify this when you can ping your desktop computer from your robot. In case this fails, set the ROS_IP parameter so that we can later tell the robot how to find and connect to this roscore.
2.2. Start the naoqi driver module
Please execute the following steps on your local computer, not from the robot
The roscore IP is the IP of the computer where the roscore is running. This command is optional. If you don’t specify, any ROS communication is disabled until you call setMasterURI. The second parameter network_interface
specifies the network interface the bridge is connected. By default, this is set to eth0
. Changing this becomes important to establish a correct network connection between robot and computer, when you are connected via a different network device, such as wlan0 or vpn0 etc. In case you are not certain which device to use, verify with ifconfig
and verify which network device has the correct IP.
2.3. Set the roscore IP manually
In case you started the naoqi driver without ROS communication (saying without the roscore_ip parameter), you can do so while the bridge is running. For this, open a SSH connection onto your robot and execute the following command on the robot
$ qicli call ROS-Driver.setMasterURI http://<yourDesktopIP>:11311
If you connect to the robot not through ethernet, but an alternative interface such as wlan0, tethering or VPN, you need to specify the network interface
$ qicli call ROS-Driver.setMasterURINet http://<yourDesktopIP>:11311 <network_interface>
For instance, if the robot use tethering (and tether
shows when doing ifconfig
), use
$ qicli call ROS-Driver.setMasterURINet http://<yourDesktopIP>:11311 tether
2.4. Check that it is running correctly
For an easy check that all components are started and correctly running, you should see the following topics being available on your roscore.
- This module also provides an API on the robot side to:
Publish data
Record data
Send command to naoqi modules
You can find more about it on the API page, or you can go back to the index.