MusicStateSpec: introduce new class describing the music state

Contains:
- state
- position
- playRate
- shuffle
- repeat

This is close to what PebbleProtocol currently supports.
here
Steffen Liebergeld 2016-06-08 20:22:05 +02:00
parent 0470731e4b
commit 1d5c8bae9d
1 changed files with 12 additions and 0 deletions

View File

@ -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;
}