Integrate our products into your software. Let's make payment happen together!
Look at all the possibilitiesWith the all our PAX terminals it is possible to read the UID of Mifare cards using the contactless reader.
The following code snippet demonstrates how you can perform a card read for Card UID.
For unattended terminals only.
//For UNATTENDED OPI-NL terminals (PAX IM30) createTerminal(ExternalTerminal.TerminalType.UNATTENDED_OPI_NL); //For ATTENDED OPI-NL terminals (PAX A77/A920) createTerminal(ExternalTerminal.TerminalType.ATTENDED_OPI_NL); //For ATTENDED OPI-DE terminals (PAX A77/A920) createTerminal(ExternalTerminal.TerminalType.ATTENDED_OPI_DE); TerminalApi terminalService = new TerminalService(); TokenDelegate delegate = new TokenDelegate() { @Override public void cardUID(String cardUID) { ... } }; terminalService.readMifareUID(terminal, delegate);
CCV offers an interface for card reader access on Android-based payment terminals for app developers. This is a solution that uses APDU commands to read Mifare cards, non-PCI APDU cards and SAM slots. This is currently only supported on the PAX IM30 terminal.
You can download the demo application and documentation by clicking on the download button below.