weimingfei
8 小时以前 ce46dd9e401d7f2936db08bcea201bbd1da8e0a2
1
2
3
4
5
6
7
8
9
10
11
12
package com.doumee.keyCabinet.utils.usb;
 
/**
 * Created by KMS on 2016/8/23.
 */
public interface IUsbConnState {
    void onUsbConnected();
 
    void onUsbPermissionDenied();
 
    void onDeviceNotFound();
}