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

50 lines
2.5 KiB
Java
Raw Normal View History

2018-07-29 00:00:48 +02:00
package info.nightscout.androidaps.services;
2016-06-07 21:48:17 +02:00
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";
2017-09-20 10:20:50 +02:00
String ACTION_NEW_FOOD = "info.nightscout.client.NEW_FOOD";
2017-09-24 22:47:18 +02:00
String ACTION_CHANGED_FOOD = "info.nightscout.client.CHANGED_FOOD";
String ACTION_REMOVED_FOOD = "info.nightscout.client.REMOVED_FOOD";
2016-06-26 14:56:43 +02:00
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
// 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";
2018-04-19 17:49:18 +02:00
String XDRIP_DATA_SOURCE_DESCRIPTION = "com.eveningoutpost.dexdrip.Extras.SourceDesc";
2016-06-07 21:48:17 +02:00
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";
2017-11-29 16:07:26 +01:00
2019-06-19 01:38:55 +02:00
String DEXCOM_BG = "com.dexcom.cgm.EXTERNAL_BROADCAST";
2018-12-11 21:56:57 +01:00
String EVERSENSE_BG = "com.senseonics.AndroidAPSEventSubscriber.BROADCAST";
2018-06-11 17:26:31 +02:00
String POCTECH_BG = "com.china.poctech.data";
2019-02-19 16:26:16 +01:00
String TOMATO_BG = "com.fanqies.tomatofn.BgEstimate";
2016-06-07 21:48:17 +02:00
}