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

9 wiersze
251 B
Java
Czysty Zwykły widok Historia

package com.bg7yoz.ft8cn.bluetooth;
public interface BluetoothSerialListener {
void onSerialConnect ();
void onSerialConnectError (Exception e);
void onSerialRead (byte[] data);
void onSerialIoError (Exception e);
}