How can receive UDP data from Python UDP client in MatLab/Simulink support package for Raspberry Pi
5 次查看(过去 30 天)
显示 更早的评论
Hi I programmed UDP client in python. This is the code.
import socket
import sys
# Create a UDP socket
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
server_address = ('localhost', 10000)
x=0.4
message = str(x)
try:
# Send data
print >>sys.stderr, 'sending "%s"' % message
sent = sock.sendto(message, server_address)
# Receive response
print >>sys.stderr, 'waiting to receive'
data, server = sock.recvfrom(4096)
print >>sys.stderr, 'received "%s"' % data
finally:
print >>sys.stderr, 'closing socket'
sock.close()
Now I would like to receive that data in my MatLab/Simulink block. I have done some research, and what found is that Instrument Control Toolbox can be use UDP object to get the data. Or go to the File Exchange and grabbed the Simple UDP Communications App code. It is just one function, judp, that allows me to send and receive UDP packets.
Is this going to work with my python UDP client? Is there any other solution?
Thanks
0 个评论
回答(1 个)
Floris Jan Florijn
2018-6-6
Did you managed to get this up and running?
I'm struggling with the same issue at the moment...
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Instrument Control Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!