You've already forked ChameleonBLEAPI
mirror of
https://github.com/RfidResearchGroup/ChameleonBLEAPI.git
synced 2026-05-12 11:20:47 -07:00
20 lines
520 B
Java
20 lines
520 B
Java
|
|
package com.proxgrind.chameleon.executor;
|
||
|
|
|
||
|
|
import com.proxgrind.chameleon.defined.IChameleonExecutor;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @author DXL
|
||
|
|
* USB执行器实现类,具体封装了执行和获得返回值的函数!
|
||
|
|
*/
|
||
|
|
public class ChameleonUsbExecutor extends ChameleonStdExecutor implements IChameleonExecutor {
|
||
|
|
|
||
|
|
private static final ChameleonUsbExecutor executor = new ChameleonUsbExecutor();
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @return 单例
|
||
|
|
*/
|
||
|
|
public static IChameleonExecutor get() {
|
||
|
|
return executor;
|
||
|
|
}
|
||
|
|
}
|