FT8CN/ft8CN/app/src/main/java/com/bg7yoz/ft8cn/bluetooth/BluetoothSerialListener.java

14 wiersze
311 B
Java
Executable File

package com.bg7yoz.ft8cn.bluetooth;
/**
* 蓝牙串口的回调接口
* BG7YOZ
* 2023-03
*/
public interface BluetoothSerialListener {
void onSerialConnect ();
void onSerialConnectError (Exception e);
void onSerialRead (byte[] data);
void onSerialIoError (Exception e);
}