AndroidAPS/app/src/main/java/info/nightscout/androidaps/Services/Intents.java

46 lines
2.3 KiB
Java
Raw Normal View History

2016-06-07 21:48:17 +02:00
package info.nightscout.androidaps.Services;
public interface Intents {
// NSClient -> App
String ACTION_NEW_TREATMENT = "info.nightscout.client.NEW_TREATMENT";
String ACTION_CHANGED_TREATMENT = "info.nightscout.client.CHANGED_TREATMENT";
String ACTION_REMOVED_TREATMENT = "info.nightscout.client.REMOVED_TREATMENT";
String ACTION_NEW_PROFILE = "info.nightscout.client.NEW_PROFILE";
String ACTION_NEW_SGV = "info.nightscout.client.NEW_SGV";
2016-06-26 14:56:43 +02:00
String ACTION_NEW_DEVICESTATUS = "info.nightscout.client.NEW_DEVICESTATUS";
String ACTION_NEW_MBG = "info.nightscout.client.NEW_MBG";
String ACTION_NEW_CAL = "info.nightscout.client.NEW_CAL";
2016-06-07 21:48:17 +02:00
String ACTION_NEW_STATUS = "info.nightscout.client.NEW_STATUS";
2017-02-17 13:18:36 +01:00
String ACTION_QUEUE_STATUS = "info.nightscout.client.QUEUE_STATUS";
2017-06-11 17:22:54 +02:00
String ACTION_ANNOUNCEMENT = "info.nightscout.client.ANNOUNCEMENT";
String ACTION_ALARM = "info.nightscout.client.ALARM";
String ACTION_URGENT_ALARM = "info.nightscout.client.URGENT_ALARM";
String ACTION_CLEAR_ALARM = "info.nightscout.client.CLEAR_ALARM";
2016-06-07 21:48:17 +02:00
// App -> NSClient
String ACTION_DATABASE = "info.nightscout.client.DBACCESS";
String ACTION_RESTART = "info.nightscout.client.RESTART";
2017-02-17 13:18:36 +01:00
String ACTION_RESEND = "info.nightscout.client.RESEND";
2017-06-11 17:22:54 +02:00
String ACTION_ACK_ALARM = "info.nightscout.client.ACK_ALARM";
2016-06-07 21:48:17 +02:00
// xDrip -> App
String RECEIVER_PERMISSION = "com.eveningoutpost.dexdrip.permissions.RECEIVE_BG_ESTIMATE";
String ACTION_NEW_BG_ESTIMATE = "com.eveningoutpost.dexdrip.BgEstimate";
String EXTRA_BG_ESTIMATE = "com.eveningoutpost.dexdrip.Extras.BgEstimate";
String EXTRA_BG_SLOPE = "com.eveningoutpost.dexdrip.Extras.BgSlope";
String EXTRA_BG_SLOPE_NAME = "com.eveningoutpost.dexdrip.Extras.BgSlopeName";
String EXTRA_SENSOR_BATTERY = "com.eveningoutpost.dexdrip.Extras.SensorBattery";
String EXTRA_TIMESTAMP = "com.eveningoutpost.dexdrip.Extras.Time";
String EXTRA_RAW = "com.eveningoutpost.dexdrip.Extras.Raw";
String ACTION_NEW_BG_ESTIMATE_NO_DATA = "com.eveningoutpost.dexdrip.BgEstimateNoData";
2016-12-28 14:57:11 +01:00
String NS_EMULATOR = "com.eveningoutpost.dexdrip.NS_EMULATOR";
2017-02-10 16:53:39 +01:00
String ACTION_REMOTE_CALIBRATION = "com.eveningoutpost.dexdrip.NewCalibration";
2017-03-21 19:11:39 +01:00
String GLIMP_BG = "it.ct.glicemia.ACTION_GLUCOSE_MEASURED";
2016-06-07 21:48:17 +02:00
}