mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-14 11:01:06 +01:00
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,
|
||
|
}
|
||
|
}
|