Our IDTech plugin supports a number of IDTech devices for attended (Augusta, Minismart, VP3300, VP8300) or unattended operation (VP3350, VP5300, VP6300, VP6800, VP3300, VP8300).
Windows | Linux | Android | |
---|---|---|---|
VP3350 | ✔ | ✔ | ✔ |
VP3300 | ✔ | ✔ | ✔ |
VP8300 | ✔ | ✔ | ✔ |
VP5300 | ✔ | ✔ | ✔ |
VP6300 | ✔ | ✔ | ✔ |
VP6300 | ✔ | ✔ | ✔ |
Augusta | ✔ | ✔ | ✔ |
Minismart II | ✔ | ✔ | ✔ |
Below you can find the different platforms where you can integrate the SDK. Please proceed to the platform you have chosen to integrate with.
IDTECH/
folder./etc/ld.so.conf.d/idtech.conf
- This file should contain the path to the extracted libs directory in Step 1.sudo ldconfig
.NEO2_devices.xml
from libs/IDTECH/
folder into your project root directory. Permissions must be set for the USB device. This can be achieved by creating a new file in /etc/udev/rules.d named usb.rules - It must have the following contents: SUBSYSTEM=="usb", MODE="0666"
. If you don’t want to add permissions for all devices you could add the IDTech vendor IDNOTE: When running in Java, you must also edit configurations and set the VM option: -Xss4m
Done! With your environment properly configured you are now ready to perform your first sales transaction. Check out the Coding 101 section for more information.
Extract libraries from win-native-32/
and copy all dll files to the application folder.
Depending on the language, run the app as follows:
You’ll need the following VM options:
-Djna.library.path=“path to application”
-Xss50m
In solution explorer:
Add Existing Item
. Find all other dll files and click Add. Select each dll file under properties select under Copy to Output Directory
to Copy Always
.Add the Worldnet IDTech plugin libraries as dependencies to your project.
Done! With your environment properly configured you are now ready to perform your first sales transaction. Check out the Coding 101 section for more information.
res/xml
folder called device_filter.xml
and add the following:<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- OACD / 4651 - IDTech VP3350 -->
<usb-device vendor-id="2765" product-id="18001"/>
<!-- 0ACD / 3530 - IDTech VP3300 -->
<usb-device vendor-id="2765" product-id="13616"/>
<!-- 0ACD / 3530 - IDTech VP8300 -->
<usb-device vendor-id="2765" product-id="13616"/>
<!-- OACD / 4440 - IDTech VP6300 -->
<usb-device vendor-id="2765" product-id="17472"/>
</resources>
AndroidManifest.xml
fileDone! With your environment properly configured you are now ready to perform your first sales transaction. Check out the Coding 101 section for more information.
Please check our Device Configuration section in the Support menu.