User Guide
//setuptheinterfacekitobject
InterfaceKitIFK=newInterfaceKit();
//linkthenewinterfacekitobjecttotheconnectedboard
IFK.open("localhost",5001);
//Getsensorvaluefromanaloginputzero
intsensorvalue=IFK.sensors[0].Value;
//ConvertsensorvalueintotemperatureindegreesCelsius
doubleroomtemp=Math.Round(((sensorvalue*0.22222)‐61.11),1);
SeethePhidgetInterfaceKitUserGuideformoreinformationontheAPIandadescriptionofourarchitecture.