<-- Back

readDATA

Reads UDP Socket and interprets data

Inputs

Outputs

If data is X-Plane data format: If data is matlab structure: If data is any other format:

Use

1. import XPlaneConnect.*;
2. socket = openUDP(49005);
3. data = readDATA(socket);
4. status = closeUDP(socket);

or

1. import XPlaneConnect.*;
2. data = readDATA(49005);

Note

NOTE: sending in a port number instead of an opened socket clears the UDP buffer. This only works if the data is being sent at a fast rate. Sending in a UDP Socket reads the first packet in the buffer.

Change Log

10/02/14: [CT] V0.9: Updated to work with updated xpcPlugin
09/10/13: [CT] Updated to receive UDP socket or port number
06/10/13: [CT] Code created

<-- Back