mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-24 02:46:50 +01:00
MusicStateSpec: introduce new class describing the music state
Contains: - state - position - playRate - shuffle - repeat This is close to what PebbleProtocol currently supports.
This commit is contained in:
parent
0470731e4b
commit
1d5c8bae9d
@ -0,0 +1,12 @@
|
||||
package nodomain.freeyourgadget.gadgetbridge.model;
|
||||
|
||||
/**
|
||||
* Created by steffen on 07.06.16.
|
||||
*/
|
||||
public class MusicStateSpec {
|
||||
public byte state;
|
||||
public int position;
|
||||
public int playRate;
|
||||
public byte shuffle;
|
||||
public byte repeat;
|
||||
}
|
Loading…
Reference in New Issue
Block a user