mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 10:31:03 +01:00
67a5917597
This was necessary to pack more complex and more specific information regarding apps etc.
20 lines
403 B
Java
20 lines
403 B
Java
package nodomain.freeyourgadget.gadgetbridge.protocol;
|
|
|
|
|
|
public class GBDeviceCommandMusicControl extends GBDeviceCommand {
|
|
public Command command = Command.UNKNOWN;
|
|
|
|
public GBDeviceCommandMusicControl() {
|
|
commandClass = CommandClass.MUSIC_CONTROL;
|
|
}
|
|
|
|
public enum Command {
|
|
UNKNOWN,
|
|
PLAY,
|
|
PAUSE,
|
|
PLAYPAUSE,
|
|
NEXT,
|
|
PREVIOUS,
|
|
}
|
|
}
|