mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 10:31:03 +01:00
e5cf22bda6
- parse the reply string in PebbleProtocol - put replies into GBDeviceEvents - display a toast in AbstractDeviceSupport, containing the reply THIS STILL DOES NOT DO ANYTHING USEFUL
17 lines
349 B
Java
17 lines
349 B
Java
package nodomain.freeyourgadget.gadgetbridge.deviceevents;
|
|
|
|
public class GBDeviceEventNotificationControl extends GBDeviceEvent {
|
|
public int handle;
|
|
public String reply;
|
|
public Event event = Event.UNKNOWN;
|
|
|
|
public enum Event {
|
|
UNKNOWN,
|
|
DISMISS,
|
|
DISMISS_ALL,
|
|
OPEN,
|
|
MUTE,
|
|
REPLY,
|
|
}
|
|
}
|