Issue: Create ROS master on Matlab

5 visualizaciones (últimos 30 días)
MATHEUS QUEMELLI
MATHEUS QUEMELLI el 29 de Jul. de 2019
Respondida: Sebastian Castro el 3 de Oct. de 2019
Hello. I'm facing some problem to create a ROS master on Matlab R2017b on Windows 10, first of all I cannot even create a rosdevice in Matlab.
This is my test code:
%rosinit(master);
ip = 'localhost';
user = 'nero';
key = '123';
%% Set ros device
d = rosdevice(ip,user,key);
d.ROSFolder = '/opt/ros/kinetic';
% Start Core
runCore(d);
%% Star Ros master
rosinit(d.DeviceAddress);
But right after running "rosdevice" I get this error:
Error using robotics.codertarget.internal.ssh2client (line 72)
Error connecting to SSH server at localhost
Error in rosdevice (line 165)
obj.Ssh = robotics.codertarget.internal.ssh2client(hostname,
...
I have no idea what is wrong, could someone help me?

Respuestas (1)

Sebastian Castro
Sebastian Castro el 3 de Oct. de 2019
Two things.
First, if all you want to do is create a ROS master on the localhost, all you need is the following
rosinit
Secondly, rosdevice is used to create an SSH connection from MATLAB to a machine with a ROS installation -- which is typically only needed if your MATLAB instance is on a different machine than your ROS install and you want to control deployed ROS nodes from MATLAB. In your case it seems you're just on one machine.
However, if you want the error to go away, you'll need your Linux machine to have OpenSSH-Server installed. Though it's a little pointless to SSH into the same machine you're SSHing from ;)
sudo apt-get install openssh-server
- Sebastian

Categorías

Más información sobre Publishers and Subscribers en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2017b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by