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