Teleoperation¶
Robotont¶
Robotont is an omnidirectionally moving platform meant for educational purposes. The platform is grown out from the Tartu University’s football robot at ROBOTEX robot competition, which was customized for teaching. Robotont combines an Intel Realsense 3D depth camera and Intel NUC on-board computer to perform computationally expensive tasks (e.g. 3D mapping) locally on the robot. More information on Robotont is available in robotont.ut.ee.
Teleoperating Robotont using SSH¶
In order to start ROS programs on Robotont, we need to log into the robot.
To make robot visible also with the name not only with the IP aaddress we have to add the robots name into laptop hosts file.
sudo gedit /etc/hosts
And add the line:
192.168.200.<robot number> robotont-<robot number>
For example:
192.168.200.12 robotont-12
In english:
Controlling Robotont from keyboard using SSH
Eesti keeles:
Additional information¶
Password: t0ndik00bas
Tip
For security reasons, passwords are not shown as asterisks or bullets when being typed into the terminal. So no panic, your keyboard works just fine. Simply type the password and hit enter.
When logged in successfully, you can see that the terminal prompt has changed from
peko@laptop-X
topeko@robotont-X
. This will be an important reference when trying to figure out which terminal is connected to where.After logging into the robot, the ROS environment should be automatically sourced for you. You can quickly display the last lines of the file with
tail ~/.bashrc
command to examine which workspaces are sourced.