mirror of
https://github.com/RfidResearchGroup/ChameleonBLEAPI.git
synced 2026-05-12 11:20:47 -07:00
Add files via upload
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package com.proxgrind.chameleon.callback;
|
||||
|
||||
import com.proxgrind.chameleon.javabean.M1KeyBean;
|
||||
|
||||
public interface KeysAuthCallback {
|
||||
// 标签异常
|
||||
void onTagAbnormal();
|
||||
|
||||
// 输入秘钥无效!
|
||||
void onKeysInvalid();
|
||||
|
||||
// 在验证的时候
|
||||
void onAuth(int sectorRemains);
|
||||
|
||||
// 在秘钥轮询的时候
|
||||
void onKeys(String key);
|
||||
|
||||
// 在验证完成时的结果回调!
|
||||
void onResults(M1KeyBean[] keyBeans);
|
||||
}
|
||||
Reference in New Issue
Block a user