<-- Back

sendUDP

Send an one dimensional array of type uint8 data over an UDP connection

Inputs

Outputs

Use

1. import XPlaneConnect.*;
2. data = uint8([1:20]);
3. #Send the data array to port 49005 on the computer at IP address 172.0.100.54.
4. status = sendUDP( data, '172.0.100.54', 49005 );

Change Log

10/02/14: [CT] V0.9: Updated to work with updated xpcPlugin
06/10/13: [CT] Code created

<-- Back