20 lines
No EOL
361 B
Java
20 lines
No EOL
361 B
Java
package com.tangem.tangemcommon.reader;
|
|
|
|
import java.io.IOException;
|
|
|
|
public interface NfcReader {
|
|
byte[] getId();
|
|
|
|
void setTimeout(int timeout)throws IOException;
|
|
|
|
int getTimeout();
|
|
|
|
byte[] transceive(byte[] data) throws IOException;
|
|
|
|
void ignoreTag() throws IOException;
|
|
|
|
void notifyReadResult(boolean success);
|
|
|
|
void connect();
|
|
|
|
} |