Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 653 Bytes

Integration.md

File metadata and controls

21 lines (14 loc) · 653 Bytes

NGS-360-3 Platform Integration/Connection Example with Qt5

All required system side codes completed.

You can find Qt5 C++ example code at HurSim folder.

In Example, used standart QTcpSocket library.

You have to send 3 double value as 24 byte array to system.

double x, y, z; byte data = new byte[24]; BitConverter.GetBytes(x).CopyTo(data, 0); BitConverter.GetBytes(y).CopyTo(data, 8); BitConverter.GetBytes(z).CopyTo(data, 16);

For manual platform control, you can look http://localhost:5000/swagger/index.html

NGS-360-3