You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
201 B

/**
* USB接口:定义USB设备的基本行为
*/
public interface USB {
/**
* 打开USB设备
*/
void open();
/**
* 关闭USB设备
*/
void close();
}