mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-14 19:11:12 +01:00
16 lines
300 B
Java
16 lines
300 B
Java
|
package nodomain.freeyourgadget.gadgetbridge.protocol;
|
||
|
|
||
|
|
||
|
public abstract class GBDeviceCommand {
|
||
|
public CommandClass commandClass = CommandClass.UNKNOWN;
|
||
|
|
||
|
public enum CommandClass {
|
||
|
UNKNOWN,
|
||
|
MUSIC_CONTROL,
|
||
|
CALL_CONTROL,
|
||
|
APP_INFO,
|
||
|
VERSION_INFO
|
||
|
}
|
||
|
}
|
||
|
|