Updated on 2026-08-14
This commit is contained in:
parent
7c4cc8fcde
commit
85f9a17bb0
245 changed files with 401 additions and 18 deletions
|
|
@ -0,0 +1,20 @@
|
|||
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();
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue