mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-14 11:01:06 +01:00
21 lines
416 B
Java
21 lines
416 B
Java
|
package nodomain.freeyourgadget.gadgetbridge.protocol;
|
||
|
|
||
|
|
||
|
public class GBDeviceCommandCallControl extends GBDeviceCommand {
|
||
|
public Command command = Command.UNKNOWN;
|
||
|
|
||
|
public GBDeviceCommandCallControl() {
|
||
|
commandClass = CommandClass.CALL_CONTROL;
|
||
|
}
|
||
|
|
||
|
public enum Command {
|
||
|
UNKNOWN,
|
||
|
ACCEPT,
|
||
|
END,
|
||
|
INCOMING,
|
||
|
OUTGOING,
|
||
|
REJECT,
|
||
|
START,
|
||
|
}
|
||
|
}
|