LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

how to bring data from ethernet cable to LabVIEW?

yes sir i ve SDK with me..... pls give me idea for getting data from the ethernet cable and use them in LabVIEW .........

0 Kudos
Message 11 of 12
(874 Views)

Like I said, you need to;

 

1 - determine the telegram protocol of your microcontroller - i.e. read the documentation - what commands to you need to send to it in order to receive the data you need?

2 - send the interrogation telegram commands over TCP -  you can use TCP Open Connection, TCP Write, TCP Read, TCP Close Connection

 

For example, ;

 

Use TCP Open Connection (with the correct IP address and port number of your device) to open a connection to your microcontroller

Send a Query Telegram (depending on the telegram protocol of your device) using TCP Write

Recieve the response using TCP Read

Then close the TCP connection using TCP Close Connection

 

Peter

0 Kudos
Message 12 of 12
(864 Views)