1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-30 00:36:26 +02: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:
Steffen Liebergeld 2016-06-08 20:22:05 +02:00
parent 0470731e4b
commit 1d5c8bae9d

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