Forgot to rename that method, too (#42)
This commit is contained in:
parent
23d91ac79e
commit
39db968e34
|
@ -164,7 +164,7 @@ public abstract class AbstractBTDeviceSupport extends AbstractDeviceSupport {
|
|||
|
||||
@Override
|
||||
public void onFindDevice(boolean start) {
|
||||
byte[] bytes = gbDeviceProtocol.encodeLocateDevice(start);
|
||||
byte[] bytes = gbDeviceProtocol.encodeFindDevice(start);
|
||||
sendToDevice(bytes);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -62,7 +62,7 @@ public abstract class GBDeviceProtocol {
|
|||
return null;
|
||||
}
|
||||
|
||||
public byte[] encodeLocateDevice(boolean start) {
|
||||
public byte[] encodeFindDevice(boolean start) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue