INFICON XTC/3 Thin Film Deposition Controller Communications Library Operating Manual User Manual

Page 76

Advertising
background image

1 - 62

IP

N 07

4-

45

4-

P1

B

XTC/3 Communications Library Operating Manual

Example

#include "XTC3Lib.h"
void main()
{

if(StartSocket()==0)

printf("Socket could not be initialized.");

if(!ConnectSocket("10.211.70.209"))

printf("Socket could not be connected!");

char ErrStr[256];
memset(ErrStr,0,256);
DataLogStruct val;
unsigned short len = 0;
getDataLog (&val, ErrStr,&len, TRUE);
if(*ErrStr == 0)
{

printf("Data Transfer successful\n");
float DT = 0;
memcpy(&DT,val.m_Data + 16, 4);
printf("The Deposit Time at this time is: %d\n", DT);

}
else

printf(ErrStr);

CloseSocket();

}

Advertising