IDTech Windows SDK Guide  1.1.93.0
API reference for Kiosk III
Initialize Kiosk III

A Singleton instance has been established in the IDT_KioskIII class. Establish the callback, and then set a connection to KioskIII through either USB or Serial.

public MainPage()
{
this.InitializeComponent();
IDT_KioskIII.setCallback(MessageCallBack);
//USB Connection:
IDT_KioskIII.useUSB();
//Serial Connection SRED:
//IDT_KioskIII.useSerialPort(1, true);
}