forked from NightscoutFoundation/xDrip
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CareFollow - v11 endpoint - First working version
Implementation of new v11 cloud data endpoint: - replace endpoint in case of EU with v11 endpoint - new and modified structures - update data processing for new structures - add JsonAdapter and structures to proguard
- Loading branch information
1 parent
194b595
commit 2baa087
Showing
18 changed files
with
376 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 6 additions & 9 deletions
15
...c/main/java/com/eveningoutpost/dexdrip/cgm/carelinkfollow/message/ActiveNotification.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,15 @@ | ||
package com.eveningoutpost.dexdrip.cgm.carelinkfollow.message; | ||
|
||
import com.eveningoutpost.dexdrip.cgm.carelinkfollow.message.util.CareLinkJsonAdapter; | ||
import com.google.gson.annotations.JsonAdapter; | ||
|
||
import java.util.Date; | ||
|
||
public class ActiveNotification { | ||
public class ActiveNotification extends Notification { | ||
|
||
public String GUID; | ||
public Date dateTime; | ||
public String type; | ||
public int faultId; | ||
public int instanceId; | ||
public String messageId; | ||
public String pumpDeliverySuspendState; | ||
public String pnpId; | ||
public int relativeOffset; | ||
|
||
public Boolean alertSilenced; | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.