mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2025-02-17 12:56:48 +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…
x
Reference in New Issue
Block a user