mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 18:41:14 +01:00
67a5917597
This was necessary to pack more complex and more specific information regarding apps etc.
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,
|
|
}
|
|
}
|