How to read Ethernet port using Matlab?
    21 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
I have to read the data provided by ScaLa(B2)-LIDAR,through a Ethernet port. In general Ibeo software is used to read the data from LIDAR using ehternet port,if we save the data provided by the Ibeo software it is in .ibc format.Now i need to use MATLAB to read the data provided by the LIDAR, Please help me in doing it? what toolboxes I need to do read Ethernet port? How to read .idc files by using MATLAB?
1 comentario
  Dominik Ma
 el 9 de Mayo de 2017
				Hi Kintali,
would be nice to know if you could solve the issue (and if so how?)? I know that Ibeo offers an SDK to read in LIDAR data, so that could be a starting point to get the data into Matlab...
Respuestas (3)
  Walter Roberson
      
      
 el 25 de Abr. de 2018
        You need the Instrument Control toolbox, or the File Exchange contribution https://www.mathworks.com/matlabcentral/fileexchange/345-tcp-udp-ip-toolbox-2-0-6
2 comentarios
  Guillaume
      
      
 el 1 de Mayo de 2018
				... or you can defer to java or on Windows, .Net, both of which can be called straight from matlab.
It's fairly trivial to receive tcp or udp packets with either. Crucially missing from the question, however, is what protocol is used for the communication. Ethernet port is not a communication method.
  daikunpeng
 el 25 de Abr. de 2018
        Hi Kintali, I'm facing the same problem. have you solved this problem?
  Javad golchin
 el 22 de Dic. de 2020
        i dont know too!
tcp ip   in matlab is so difficult... rs232 and com is very easyer!
:
problem 1:    
clear
clc
 t=  tcpclient('localhost', 56666);
Cannot create a communication link with the remote server. Please check the input arguments(ADDRESS and PORT) and make sure the
server is running.
Additional Information: No connection could be made because the target machine actively refused it.
problem2:
why  ECHO in this case doesnt work?
 we was able to echo character between pc and AVR!   so right nowe what is the correct command similar to ECHO for testing tcpip function?(in matlab2011)
3 comentarios
  Javad golchin
 el 23 de Dic. de 2020
				Hi  Dear 
fire wall has been off
2011 was a typic mistake
i dont know that i have  " Instrument Control Toolbox" or no? echo   for simple  test is not permitted?
attachments:
thanks
  Walter Roberson
      
      
 el 23 de Dic. de 2020
				 t=  tcpclient('localhost', 56666);
However it looks like the device you need to connect to is on 192.168.0.1 not on 'localhost' 
As your current IP address is 172.16.0.15 then as I am not able to see the full ethernet information (such as the VMWare ethernet information) I cannot tell that your system also has IP existence on 192.168.0.x . Possibly you need to reconfigure the device to have a 172.16.0.x address (other than 172.16.0.15, and probably not 172.16.0.1 or 172.16.0.255 either.) 
Ver también
Categorías
				Más información sobre MATLAB Support Package for Raspberry Pi Hardware en Help Center y File Exchange.
			
	Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




