





















| TABLE 1 |
| SUMMARY OF CONTINUOUS-DISCRETE |
| EXTENDED KALMAN FILTER |
| System Model | |
| Measurement Model | |
| Initial Conditions | |
| Other Assumptions | |
| State Estimate Propagation | |
| Error Covariance Propagation | |
| State Estimate Update | |
| Error Covariance Update | |
| Gain Matrix | |
| Definitions | |
| TABLE 3 |
| State Vector |
| X, Xe, Xe(0): These symbols denote, respectively, the state vector, the best estimate (or optimal |
| estimate) of the state vector, and the initial best estimate of the state vector. They contain both variables |
| and parameters as defined above and, with regard to estimation, there are no distinctions. |
| Dynamic Process Model |
| dX = f(X,t), dXe = f(Xe,t): These symbols denote the time derivative of the state vector and estimated |
| state vector, respectively. They represent a system of first order differential equations (or difference |
| equations) which describe the manner in which the state elements propagate in time. The function, f, may |
| be linear or nonlinear. |
| Measurement Model |
| Ym = h(X) + e, Ye = h(Xe): These symbols denote the actual measurement and the best estimate of the |
| measurement, respectively. The function, h, defines the arbitrary, but known, way in which the state |
| vector elements are related to the measurement, and e represents the sensor measurement error. |
| Covariance Matrix |
| P, P(0): Denotes, respectively, the matrix of variances and co-variances associated with the errors of each |
| of the state variable estimates (within the estimated state vector) and their initial values, |
| Transition Matrix |
| A, A(0): Denotes the transition matrix, which is used to propagate the covariance matrix forward it time |
| (time update), and it's initial value, respectively; in the linear case it is also used to time update the state |
| vector estimate. |
| Process Noise Matrix |
| Q: Denotes the matrix of variances and co-variances associated with error growth uncertainty |
| accumulated in the state variable estimates since the last measurement update, |
| Measurement Matrix |
| H, H(0): Denotes the measurement matrix and it's initial value, respectively. This matrix defines the |
| linear functional relationship between the measurement and the state vector elements. If, the measurement |
| model is linear, then H = h; if h is non-linear, then H is defined by linearizing h using partial derivatives |
| or perturbation techniques. |
| Measurement Noise Matrix |
| R: Denotes the matrix of variances and co-variances associated with measurement error uncertainties. |
| Kalman Gain Matrix |
| K: Denotes the Kalman gain matrix which, when multiplied by the difference between the actual |
| measurement, and the best estimate of the measurement, yields the estimated state correction. This |
| estimated state correction, when added to the old best estimate, becomes the new best estimate. |
| Estimated Measurement Error (Residual) |
| y = Ym − Ye: Denotes the difference between the actual measurement and the best estimate of the |
| measurement. This difference multiplied by the Kalman gain yields the correction to the previous state |
| vector estimate. |
| TABLE 4 |
| % Optimal Glucose Estimator. Extended Kalman Filter; Computes Statistical Test Data for |
| Patient Health Monitor |
| %Ed_JYP_Estimator; Two-step scale-factor model, Exp = .999 for t>20; r=15{circumflex over ( )}2 for y<10 ; |
| x=[150;.25]; hh=[1 0];p=[100{circumflex over ( )}2 0 ;0 .1{circumflex over ( )}2];a=[1 0 ; 0 1]; q=[20{circumflex over ( )}2 0 ; 0 .002{circumflex over ( )}2]; rr=15{circumflex over ( )}2; |
| r= 5{circumflex over ( )}2; I=[1 0;0 1]; |
| load EdJY528.prn, |
| [m,n]=size(EdJY528), |
| t=EdJY528 1:, 1)/12; |
| y=EdJY528(:,2); |
| g=EdJY528(:,3); |
| gm=EdJYS28(:,4); |
| x=[gmf(1); .25]; |
| sz=0.0; |
| SVZ = p(1,1)*K(2){circumflex over ( )}2 + p(2,2)*x(1){circumflex over ( )}2; |
| for i = 1:m; . . . |
| r = 5{circumflex over ( )}2; . . . | |
| zz = 0; . . . |
| if y(i) < 10 |
| r = 15{circumflex over ( )}2; . . . |
| end; |
| if t(i) > 20 a =(1 0 ; 0 .999]; . . . | |
| end; |
| p=a*p*a′+q; . . . | |
| x=a*x;. . . |
| if gm(i) > 0 |
| k=p*hh*/(hh*p*hh*+rr); . . . | |
| zz=(gm(i)−x(1)); . . . | |
| x=x+k*zz; . . . | |
| p=(I−k*hh) *p; . . . |
| end; |
| h=[x(2) x(1)]; . . . | |
| k=p*h′/ (h*p*hh+r); . . . | |
| x=x+k*z; . . . | |
| p=(I−k*h) *p; . . . | |
| az=abs (z); . . . | |
| sz=sz+z;. . . | |
| asz = abs (sz); . . . | |
| VZ = p(1,1) *x(2){circumflex over ( )}2 + p(2,2)*x(1){circumflex over ( )}2 + 2*p(1,2)*x(1)*x(2)+ r ; . . . | |
| sigZ = sqrt(VZ); . . . | |
| SVZ = SVZ +VZ; . . . | |
| siqSZ = sqrt(SVZ); . . . | |
| VZZ = p(1.1) + rr; . . . | |
| sigZZ = sqrt(VZZ); . . . | |
| azz = abs(zz); . . . | |
| xhistory(i,1) = x(1); . . . | |
| xhistory(i,2) = x(2); . . . | |
| gmhistory =gm; . . . | |
| ghistory =g; . . . | |
| zhistory(i) =z; . . . | |
| sigsz_history(i) = sigSZ; . . . | |
| sigz_history(i) = 2*sigZ; . . . | |
| aszhistory(i) = asz; . . . | |
| azhistory(i) = az; . . . | |
| zzhistory(i) = zz; . . . | |
| sigzz_history(i) = 2*sigZZ; . . . | |
| azzhistory(i) = azz; . . . | |
| sig_history(i,1)=sqrt(p(1,1)); . . . | |
| sig_history(i,2)=sqrt(p(2,2)); . . . | |
| yhistory=y;. . . |
| end; |
| figure (1) |
| plot(t,xhistory(:,2)); |
| xlabel (′ Measurement Time (hrs) ′); |
| ylabel(′ Scale Factor Estimate; (ISIG Units/(mg/dl))′); |
| title(′Scale Factor Estimate vs Time′); |
| figure (2) |
| plot (t, gmhistory (:), t,xhistory (:,1)); |
| xlabel(′Time (hrs)′); |
| Ylabel(′Glucose Meas & Estimated Glucose; (mg/dl)′); |
| title(′All Glucose Measurements & Estimated Glucose vs Time′); |
| figure (3) |
| plot (t,yhistory (:), t, zhistory(:)); |
| xlabel(′Time (hrs)′); |
| Ylabel(′ISIG Meas & z Residual; (ISIG Units) ′); |
| title(′ISIG Measurement & z residual vs Time′); |
| figure (4) |
| plot(t,xhistory(:,1),t,ghistory(:,1)); |
| xlabel(′ Time (hrs)′); |
| ylabel(′Glucose & Estimated Glucose; (mg/dl)′); |
| title(′Glucose Estimate & All Glucose CBGs vs Time′); |
| figure (5) |
| plot(t,sigzz_history(:),t,azzhistory(:)); |
| xlabel (′Time (hrs) ′); |
| ylabel(′Abs(zz) Residual & two sigma(zz); (mg/dl) ′); |
| title(′Residual Test: 2 Siqma(zz) & Abs(zz) Residual vs Time′); |
| figure (6) |
| plot(t,azhistory(:),t,sigz_history(:)); |
| xlabel(′Measurement Time (hrs)′); |
| ylabel(′z Residual & Standard Deviation; (ISIG Units)′); |
| title(′Residual Test Abs(z) & 2 Sigma(z) vs Time′); |
| figure (7) |
| plot(t,aszhistory(:),t,sigsz_history(:)); |
| xlabel(′ Measurement Time (hrs)′); |
| ylabel(′ sz Residual & Sigma; (ISIG Units) ′); |
| title(′Residual Test : Abs(sz) & Sigma(sz) vs Time′); |
| TABLE 5 |
| PROBLEM DEFINITION |
| The general, discrete-time system representation with explicit |
| process and observation time delays is given by |
| (1) | |
| (2) |
| (3) | |
| and | |
| (4) | |
| and the dimensionality of the system is defined by h, where h = max(p, q) |
| In Eq. (3), the control remains the same as in Eq. (1) because; |
| physically, past states cannot be changed or controlled. In Eq. (4) |
| the observation Y and the observation noise W2also |
| remain unchanged. |
| In Eqs. (1) and (2), p and q are not, in general. equal. For example. if the |
| observation is not a linear function of all the delayed states contained in {overscore (X)}. |
| then h = q > p. and the appropriate (q − p) submatrices |
| in {overscore (C)}. of Eq. (4). are set equal to zero. If the process |
| evolution is not a linear function of all the delayed |
| states contained in {overscore (X)}, then h = p > q, and the |
| appropriate submatrices in {overscore (A)}. of Eq. (3). are set equal |
| to zero. The dimensions of {overscore (B)} and {overscore (W)}1,in Eq. (3), must also |
| be consistent with the integer h. Therefore, without loss of generality, the |
| system defined by Eqs. (1) and (2) can be represented |
| by the augmented system model described by Eqs. (3) and (4). |
| Given that the control is to minimize the expected value of a quadratic cost |
| function of the form, |
| (5) | |
| then the separation principle applies [3]. Also, the optimal linear stochastic |
| control of the augmented system is given by a deterministic, optimal linear |
| controller with state input {overscore (X)} (or estimated state feedback), |
| which is provided by an optimal one-step predictor using the |
| augmented model [4]. That is, |
| The final value of {overscore (P)} used to “initialize” Eq. (8) |
| (which is solved backward in time) is the final value defined in |
| the quadratic cost function of Eq. (5), that is, |
| {overscore (P)}(k1) = {overscore (P)}1. The initial value of {overscore (Q)} used to initialize Eq. (11) is the error |
| covariance of the initial estimate of X, that is, {overscore (Q)}(0) = {overscore (Q)}0. |
| If the system statistics defined in Eqs. (1) and (2) are gaussian, |
| then the above solution is the optimal solution without qualification; |
| if not, then it is the optimal linear control solution. The expected |
| system performance is determined by analyzing the augmented system |
| as a linear, stochastic regulator problem |
| PRACTICAL APPLICATIONS |
| From control gain Eqs. (7) and (8) and estimator gain |
| Eqs. (10) and (11), it can be shown that the required dimensions of |
| the controller and estimator are not, in general, equal. The |
| dimensions of the control matrix Riccati equation (8) is determined |
| by the number of delayed states in the process evolution, that |
| is, {overscore (P)} has the dimensions of n · q × n · q. |
| Consequently, for the special case of measurement delays only |
| (q = 1), the controller implementation is unaffected. |
| However, the dimensions of the estimator matrix Riccati equation (11) are |
| determined by the maximum of p and q. Since h = max(p, q), |
| then {overscore (Q)} has the dimensions n · h × n · h. |
| For the general case, the optimal control is given by |
| (12) | |
| where | |
| (13) | |
| and | |
| (14) | |
| (15) | |
| then, for the special case where q = 1 and p ≧ 2, | |
| the time update becomes | |
| (16) | |
| For the worst case, where q > p > I, the time update is given by | |
| (17) | |
| In practice, another computational simplification results because rarely, if |
| ever, is the actual system measurement a function of every time-delayed |
| state element, and likewise for the actual system process model. Hence the |
| submatrices Aiand Ci(for i > 1) in {overscore (A)} and {overscore (C)}, respectively, are usually of |
| significantly reduced dimension. This, in turn, significantly reduces the |
| dimensions of the augmented system model. |
| We note that the iteration interval Δt (implied in the discrete-time system |
| representation) or some integer number of Δt's should be set equal to |
| the time delay. For variable time delays, it may be advantageous to use (a) |
| variable iteration intervals for the estimator, (b) fixed iteration intervals |
| for the controller, and (c) variable-time updates of the state estimate to |
| time synch the estimator output with the controller input. |
| Finally, for the analogous continuous-time problem, the filter equation |
| becomes a partial differential equation with a boundary condition, and the |
| covanance equation becomes a partial differential matrix equation with |
| three boundary conditions (see [2]). Consequently, the most practical |
| control solution is obtained by discretizing the continuous-time system |
| representation and then applying the approach of Section III. One |
| technique for discretizing the continuous-time representation is by |
| using the Z transform method; see, for example, [5]. Using a scalar |
| differential equation with one delayed slate as an example, we have |
| (18) | |
| If we assume that the output solution X(t) is sampled in discrete time, and |
| if the system process can be reasonably approximated by a continuous |
| system in which {dot over (X)} is driven by the output of a high- |
| frequency sampling of the right side of Eq. (18), then the |
| discrete-time process model is given by |
| (19) | |
| The approximate discrete-time solution to Eq. (18), which is given by |
| Eq. (19), is now in a form consistent with Eq. (1) of Section II, and the ap- |
| proach of Section III can be applied. |
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| US10/417,438US20030195404A1 (en) | 2000-09-22 | 2003-04-16 | Method and apparatus for real-time control of physiological parameters |
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| US23463200P | 2000-09-22 | 2000-09-22 | |
| US09/960,855US6572545B2 (en) | 2000-09-22 | 2001-09-21 | Method and apparatus for real-time control of physiological parameters |
| US10/417,438US20030195404A1 (en) | 2000-09-22 | 2003-04-16 | Method and apparatus for real-time control of physiological parameters |
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| US09/960,855ContinuationUS6572545B2 (en) | 2000-09-22 | 2001-09-21 | Method and apparatus for real-time control of physiological parameters |
| Publication Number | Publication Date |
|---|---|
| US20030195404A1true US20030195404A1 (en) | 2003-10-16 |
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| US09/960,846Expired - Fee RelatedUS6575905B2 (en) | 2000-09-22 | 2001-09-21 | Method and apparatus for real-time estimation of physiological parameters |
| US09/960,855Expired - Fee RelatedUS6572545B2 (en) | 2000-09-22 | 2001-09-21 | Method and apparatus for real-time control of physiological parameters |
| US10/417,438AbandonedUS20030195404A1 (en) | 2000-09-22 | 2003-04-16 | Method and apparatus for real-time control of physiological parameters |
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| US09/960,846Expired - Fee RelatedUS6575905B2 (en) | 2000-09-22 | 2001-09-21 | Method and apparatus for real-time estimation of physiological parameters |
| US09/960,855Expired - Fee RelatedUS6572545B2 (en) | 2000-09-22 | 2001-09-21 | Method and apparatus for real-time control of physiological parameters |
| Country | Link |
|---|---|
| US (3) | US6575905B2 (en) |
| AU (1) | AU2001291189A1 (en) |
| WO (1) | WO2002024065A1 (en) |
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| WO2005081171A3 (en)* | 2004-02-19 | 2006-09-14 | Edward Henry Mathews | Insulin bolus calculator for mobile communication device |
| WO2008057384A3 (en)* | 2006-11-02 | 2008-09-04 | Univ North Carolina | Methods and systems for determining an intravenous insulin infusion rate |
| US20080214919A1 (en)* | 2006-12-26 | 2008-09-04 | Lifescan, Inc. | System and method for implementation of glycemic control protocols |
| US20100249561A1 (en)* | 2007-06-21 | 2010-09-30 | University Of Virginia Patent Foundation | LQG Artificial Pancreas Control System and Related Method |
| US20110238350A1 (en)* | 2010-03-29 | 2011-09-29 | Commissariat A L'energie Atomique Et Aux Energies Alternatives | Calibrating method and system, recording medium for this method |
| US20110264378A1 (en)* | 2008-11-26 | 2011-10-27 | University Of Virginia Patent Foundation | Method, System, and Computer Program Product For Tracking of Blood Glucose Variability in Diabetes |
| US20110282321A1 (en)* | 2007-01-31 | 2011-11-17 | Medtronic Minimed, Inc. | Model predictive method and system for controlling and supervising insulin infusion |
| US8417311B2 (en) | 2008-09-12 | 2013-04-09 | Optiscan Biomedical Corporation | Fluid component analysis system and method for glucose monitoring and control |
| US8449524B2 (en) | 2007-10-10 | 2013-05-28 | Optiscan Biomedical Corporation | Fluid component analysis systems and methods for glucose monitoring and control |
| US20160147976A1 (en)* | 2014-11-26 | 2016-05-26 | RxAdvance Corporation | Medication Identification, Tracking And Adherence Management |
| WO2017136218A1 (en)* | 2016-02-01 | 2017-08-10 | Dexcom, Inc. | System and method for decision support using lifestyle factors |
| US9974903B1 (en) | 2016-05-02 | 2018-05-22 | Dexcom, Inc. | System and method for providing alerts optimized for a user |
| WO2019090016A1 (en)* | 2017-11-02 | 2019-05-09 | Boston Scientific Scimed, Inc. | Systems and methods for graded glucose control |
| WO2021005552A1 (en)* | 2019-07-09 | 2021-01-14 | El Fathi Anas | Method and system for determining glucose change in a subject |
| US11304633B2 (en) | 2017-11-02 | 2022-04-19 | Boston Scientific Scimed, Inc. | System and method for providing glucose control therapy |
| US11324889B2 (en) | 2020-02-14 | 2022-05-10 | Insulet Corporation | Compensation for missing readings from a glucose monitor in an automated insulin delivery system |
| US11386996B2 (en) | 2014-01-30 | 2022-07-12 | Insulet Netherlands B.V. | Therapeutic product delivery system and method of pairing |
| US11439754B1 (en) | 2021-12-01 | 2022-09-13 | Insulet Corporation | Optimizing embedded formulations for drug delivery |
| US11551802B2 (en) | 2020-02-11 | 2023-01-10 | Insulet Corporation | Early meal detection and calorie intake detection |
| US11547800B2 (en) | 2020-02-12 | 2023-01-10 | Insulet Corporation | User parameter dependent cost function for personalized reduction of hypoglycemia and/or hyperglycemia in a closed loop artificial pancreas system |
| US11565043B2 (en) | 2018-05-04 | 2023-01-31 | Insulet Corporation | Safety constraints for a control algorithm based drug delivery system |
| US11565039B2 (en) | 2018-10-11 | 2023-01-31 | Insulet Corporation | Event detection for drug delivery system |
| US11596740B2 (en) | 2015-02-18 | 2023-03-07 | Insulet Corporation | Fluid delivery and infusion devices, and methods of use thereof |
| US11607493B2 (en) | 2020-04-06 | 2023-03-21 | Insulet Corporation | Initial total daily insulin setting for user onboarding |
| US11628251B2 (en) | 2018-09-28 | 2023-04-18 | Insulet Corporation | Activity mode for artificial pancreas system |
| US11684716B2 (en) | 2020-07-31 | 2023-06-27 | Insulet Corporation | Techniques to reduce risk of occlusions in drug delivery systems |
| US11724027B2 (en) | 2016-09-23 | 2023-08-15 | Insulet Corporation | Fluid delivery device with sensor |
| US11723560B2 (en) | 2018-02-09 | 2023-08-15 | Dexcom, Inc. | System and method for decision support |
| US11738144B2 (en) | 2021-09-27 | 2023-08-29 | Insulet Corporation | Techniques enabling adaptation of parameters in aid systems by user input |
| US11801344B2 (en) | 2019-09-13 | 2023-10-31 | Insulet Corporation | Blood glucose rate of change modulation of meal and correction insulin bolus quantity |
| US11833329B2 (en) | 2019-12-20 | 2023-12-05 | Insulet Corporation | Techniques for improved automatic drug delivery performance using delivery tendencies from past delivery history and use patterns |
| US11857763B2 (en) | 2016-01-14 | 2024-01-02 | Insulet Corporation | Adjusting insulin delivery rates |
| US11865299B2 (en) | 2008-08-20 | 2024-01-09 | Insulet Corporation | Infusion pump systems and methods |
| US11878145B2 (en) | 2017-05-05 | 2024-01-23 | Ypsomed Ag | Closed loop control of physiological glucose |
| US11901060B2 (en) | 2017-12-21 | 2024-02-13 | Ypsomed Ag | Closed loop control of physiological glucose |
| US11904140B2 (en) | 2021-03-10 | 2024-02-20 | Insulet Corporation | Adaptable asymmetric medicament cost component in a control system for medicament delivery |
| US11929158B2 (en) | 2016-01-13 | 2024-03-12 | Insulet Corporation | User interface for diabetes management system |
| US11935637B2 (en) | 2019-09-27 | 2024-03-19 | Insulet Corporation | Onboarding and total daily insulin adaptivity |
| USD1020794S1 (en) | 2018-04-02 | 2024-04-02 | Bigfoot Biomedical, Inc. | Medication delivery device with icons |
| US11957875B2 (en) | 2019-12-06 | 2024-04-16 | Insulet Corporation | Techniques and devices providing adaptivity and personalization in diabetes treatment |
| USD1024090S1 (en) | 2019-01-09 | 2024-04-23 | Bigfoot Biomedical, Inc. | Display screen or portion thereof with graphical user interface associated with insulin delivery |
| US11969579B2 (en) | 2017-01-13 | 2024-04-30 | Insulet Corporation | Insulin delivery methods, systems and devices |
| US11986630B2 (en) | 2020-02-12 | 2024-05-21 | Insulet Corporation | Dual hormone delivery system for reducing impending hypoglycemia and/or hyperglycemia risk |
| US12020797B2 (en) | 2018-06-22 | 2024-06-25 | Ypsomed Ag | Insulin and pramlintide delivery systems, methods, and devices |
| US12036389B2 (en) | 2020-01-06 | 2024-07-16 | Insulet Corporation | Prediction of meal and/or exercise events based on persistent residuals |
| US12042630B2 (en) | 2017-01-13 | 2024-07-23 | Insulet Corporation | System and method for adjusting insulin delivery |
| US12064591B2 (en) | 2013-07-19 | 2024-08-20 | Insulet Corporation | Infusion pump system and method |
| US12076160B2 (en) | 2016-12-12 | 2024-09-03 | Insulet Corporation | Alarms and alerts for medication delivery devices and systems |
| US12097355B2 (en) | 2023-01-06 | 2024-09-24 | Insulet Corporation | Automatically or manually initiated meal bolus delivery with subsequent automatic safety constraint relaxation |
| US12106837B2 (en) | 2016-01-14 | 2024-10-01 | Insulet Corporation | Occlusion resolution in medication delivery devices, systems, and methods |
| US12115351B2 (en) | 2020-09-30 | 2024-10-15 | Insulet Corporation | Secure wireless communications between a glucose monitor and other devices |
| US12123654B2 (en) | 2010-05-04 | 2024-10-22 | Fractal Heatsink Technologies LLC | System and method for maintaining efficiency of a fractal heat sink |
| US12121700B2 (en) | 2020-07-22 | 2024-10-22 | Insulet Corporation | Open-loop insulin delivery basal parameters based on insulin delivery records |
| US12121701B2 (en) | 2021-01-29 | 2024-10-22 | Insulet Corporation | Systems and methods for incorporating co-formulations of insulin in an automatic insulin delivery system |
| US12128215B2 (en) | 2020-09-30 | 2024-10-29 | Insulet Corporation | Drug delivery device with integrated optical-based glucose monitor |
| US12251201B2 (en) | 2019-08-16 | 2025-03-18 | Poltorak Technologies Llc | Device and method for medical diagnostics |
| US12318577B2 (en) | 2017-01-13 | 2025-06-03 | Insulet Corporation | System and method for adjusting insulin delivery |
| US12343502B2 (en) | 2017-01-13 | 2025-07-01 | Insulet Corporation | System and method for adjusting insulin delivery |
| US12370307B2 (en) | 2020-02-03 | 2025-07-29 | Insulet Corporation | Use of fuzzy logic in predicting user behavior affecting blood glucose concentration in a closed loop control system of an automated insulin delivery device |
| US12383166B2 (en) | 2016-05-23 | 2025-08-12 | Insulet Corporation | Insulin delivery system and methods with risk-based set points |
| US12406760B2 (en) | 2021-06-07 | 2025-09-02 | Insulet Corporation | Exercise safety prediction based on physiological conditions |
| US12431229B2 (en) | 2021-03-10 | 2025-09-30 | Insulet Corporation | Medicament delivery device with an adjustable and piecewise analyte level cost component to address persistent positive analyte level excursions |
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US6036924A (en) | 1997-12-04 | 2000-03-14 | Hewlett-Packard Company | Cassette of lancet cartridges for sampling blood |
| US6391005B1 (en) | 1998-03-30 | 2002-05-21 | Agilent Technologies, Inc. | Apparatus and method for penetration with shaft having a sensor for sensing penetration depth |
| US9066695B2 (en) | 1998-04-30 | 2015-06-30 | Abbott Diabetes Care Inc. | Analyte monitoring device and methods of use |
| US8688188B2 (en) | 1998-04-30 | 2014-04-01 | Abbott Diabetes Care Inc. | Analyte monitoring device and methods of use |
| US6175752B1 (en) | 1998-04-30 | 2001-01-16 | Therasense, Inc. | Analyte monitoring device and methods of use |
| US8974386B2 (en) | 1998-04-30 | 2015-03-10 | Abbott Diabetes Care Inc. | Analyte monitoring device and methods of use |
| US8480580B2 (en) | 1998-04-30 | 2013-07-09 | Abbott Diabetes Care Inc. | Analyte monitoring device and methods of use |
| US8465425B2 (en) | 1998-04-30 | 2013-06-18 | Abbott Diabetes Care Inc. | Analyte monitoring device and methods of use |
| US6949816B2 (en) | 2003-04-21 | 2005-09-27 | Motorola, Inc. | Semiconductor component having first surface area for electrically coupling to a semiconductor chip and second surface area for electrically coupling to a substrate, and method of manufacturing same |
| US8346337B2 (en) | 1998-04-30 | 2013-01-01 | Abbott Diabetes Care Inc. | Analyte monitoring device and methods of use |
| US6430525B1 (en)* | 2000-06-05 | 2002-08-06 | Masimo Corporation | Variable mode averager |
| WO2002024065A1 (en)* | 2000-09-22 | 2002-03-28 | Knobbe, Lim & Buckingham | Method and apparatus for real-time estimation and control of pysiological parameters |
| US8641644B2 (en) | 2000-11-21 | 2014-02-04 | Sanofi-Aventis Deutschland Gmbh | Blood testing apparatus having a rotatable cartridge with multiple lancing elements and testing means |
| DE10057832C1 (en) | 2000-11-21 | 2002-02-21 | Hartmann Paul Ag | Blood analysis device has syringe mounted in casing, annular mounting carrying needles mounted behind test strip and being swiveled so that needle can be pushed through strip and aperture in casing to take blood sample |
| US6560471B1 (en) | 2001-01-02 | 2003-05-06 | Therasense, Inc. | Analyte monitoring device and methods of use |
| EP1397068A2 (en) | 2001-04-02 | 2004-03-17 | Therasense, Inc. | Blood glucose tracking apparatus and methods |
| JP4272051B2 (en) | 2001-06-12 | 2009-06-03 | ペリカン テクノロジーズ インコーポレイテッド | Blood sampling apparatus and method |
| US7041068B2 (en) | 2001-06-12 | 2006-05-09 | Pelikan Technologies, Inc. | Sampling module device and method |
| EP1395185B1 (en) | 2001-06-12 | 2010-10-27 | Pelikan Technologies Inc. | Electric lancet actuator |
| US7981056B2 (en) | 2002-04-19 | 2011-07-19 | Pelikan Technologies, Inc. | Methods and apparatus for lancet actuation |
| US7749174B2 (en) | 2001-06-12 | 2010-07-06 | Pelikan Technologies, Inc. | Method and apparatus for lancet launching device intergrated onto a blood-sampling cartridge |
| US9226699B2 (en) | 2002-04-19 | 2016-01-05 | Sanofi-Aventis Deutschland Gmbh | Body fluid sampling module with a continuous compression tissue interface surface |
| JP4209767B2 (en) | 2001-06-12 | 2009-01-14 | ペリカン テクノロジーズ インコーポレイテッド | Self-optimized cutting instrument with adaptive means for temporary changes in skin properties |
| WO2002101359A2 (en) | 2001-06-12 | 2002-12-19 | Pelikan Technologies, Inc. | Integrated blood sampling analysis system with multi-use sampling module |
| US8337419B2 (en) | 2002-04-19 | 2012-12-25 | Sanofi-Aventis Deutschland Gmbh | Tissue penetration device |
| US9795747B2 (en) | 2010-06-02 | 2017-10-24 | Sanofi-Aventis Deutschland Gmbh | Methods and apparatus for lancet actuation |
| US7344507B2 (en) | 2002-04-19 | 2008-03-18 | Pelikan Technologies, Inc. | Method and apparatus for lancet actuation |
| US9427532B2 (en) | 2001-06-12 | 2016-08-30 | Sanofi-Aventis Deutschland Gmbh | Tissue penetration device |
| AU2002344825A1 (en) | 2001-06-12 | 2002-12-23 | Pelikan Technologies, Inc. | Method and apparatus for improving success rate of blood yield from a fingerstick |
| US7344894B2 (en) | 2001-10-16 | 2008-03-18 | Agilent Technologies, Inc. | Thermal regulation of fluidic samples within a diagnostic cartridge |
| US7451126B2 (en)* | 2001-10-18 | 2008-11-11 | Omron Corporation | State space navigation system, user system and business methods for machine to machine business |
| US9247901B2 (en) | 2003-08-22 | 2016-02-02 | Dexcom, Inc. | Systems and methods for replacing signal artifacts in a glucose sensor data stream |
| US9282925B2 (en) | 2002-02-12 | 2016-03-15 | Dexcom, Inc. | Systems and methods for replacing signal artifacts in a glucose sensor data stream |
| US8260393B2 (en) | 2003-07-25 | 2012-09-04 | Dexcom, Inc. | Systems and methods for replacing signal data artifacts in a glucose sensor data stream |
| US8010174B2 (en) | 2003-08-22 | 2011-08-30 | Dexcom, Inc. | Systems and methods for replacing signal artifacts in a glucose sensor data stream |
| US8784335B2 (en) | 2002-04-19 | 2014-07-22 | Sanofi-Aventis Deutschland Gmbh | Body fluid sampling device with a capacitive sensor |
| US8579831B2 (en) | 2002-04-19 | 2013-11-12 | Sanofi-Aventis Deutschland Gmbh | Method and apparatus for penetrating tissue |
| US7232451B2 (en) | 2002-04-19 | 2007-06-19 | Pelikan Technologies, Inc. | Method and apparatus for penetrating tissue |
| US8221334B2 (en) | 2002-04-19 | 2012-07-17 | Sanofi-Aventis Deutschland Gmbh | Method and apparatus for penetrating tissue |
| US7547287B2 (en) | 2002-04-19 | 2009-06-16 | Pelikan Technologies, Inc. | Method and apparatus for penetrating tissue |
| US7582099B2 (en) | 2002-04-19 | 2009-09-01 | Pelikan Technologies, Inc | Method and apparatus for penetrating tissue |
| US7674232B2 (en) | 2002-04-19 | 2010-03-09 | Pelikan Technologies, Inc. | Method and apparatus for penetrating tissue |
| US7524293B2 (en) | 2002-04-19 | 2009-04-28 | Pelikan Technologies, Inc. | Method and apparatus for penetrating tissue |
| US7141058B2 (en) | 2002-04-19 | 2006-11-28 | Pelikan Technologies, Inc. | Method and apparatus for a body fluid sampling device using illumination |
| US7297122B2 (en) | 2002-04-19 | 2007-11-20 | Pelikan Technologies, Inc. | Method and apparatus for penetrating tissue |
| US8267870B2 (en) | 2002-04-19 | 2012-09-18 | Sanofi-Aventis Deutschland Gmbh | Method and apparatus for body fluid sampling with hybrid actuation |
| US7491178B2 (en) | 2002-04-19 | 2009-02-17 | Pelikan Technologies, Inc. | Method and apparatus for penetrating tissue |
| US7901362B2 (en) | 2002-04-19 | 2011-03-08 | Pelikan Technologies, Inc. | Method and apparatus for penetrating tissue |
| US7291117B2 (en) | 2002-04-19 | 2007-11-06 | Pelikan Technologies, Inc. | Method and apparatus for penetrating tissue |
| US8702624B2 (en) | 2006-09-29 | 2014-04-22 | Sanofi-Aventis Deutschland Gmbh | Analyte measurement device with a single shot actuator |
| US7563232B2 (en) | 2002-04-19 | 2009-07-21 | Pelikan Technologies, Inc. | Method and apparatus for penetrating tissue |
| US7892183B2 (en) | 2002-04-19 | 2011-02-22 | Pelikan Technologies, Inc. | Method and apparatus for body fluid sampling and analyte sensing |
| US7717863B2 (en) | 2002-04-19 | 2010-05-18 | Pelikan Technologies, Inc. | Method and apparatus for penetrating tissue |
| US7648468B2 (en) | 2002-04-19 | 2010-01-19 | Pelikon Technologies, Inc. | Method and apparatus for penetrating tissue |
| US7374544B2 (en) | 2002-04-19 | 2008-05-20 | Pelikan Technologies, Inc. | Method and apparatus for penetrating tissue |
| US7229458B2 (en) | 2002-04-19 | 2007-06-12 | Pelikan Technologies, Inc. | Method and apparatus for penetrating tissue |
| US7909778B2 (en) | 2002-04-19 | 2011-03-22 | Pelikan Technologies, Inc. | Method and apparatus for penetrating tissue |
| US7371247B2 (en) | 2002-04-19 | 2008-05-13 | Pelikan Technologies, Inc | Method and apparatus for penetrating tissue |
| US9248267B2 (en) | 2002-04-19 | 2016-02-02 | Sanofi-Aventis Deustchland Gmbh | Tissue penetration device |
| US9314194B2 (en) | 2002-04-19 | 2016-04-19 | Sanofi-Aventis Deutschland Gmbh | Tissue penetration device |
| US7410468B2 (en) | 2002-04-19 | 2008-08-12 | Pelikan Technologies, Inc. | Method and apparatus for penetrating tissue |
| US7481776B2 (en) | 2002-04-19 | 2009-01-27 | Pelikan Technologies, Inc. | Method and apparatus for penetrating tissue |
| US7331931B2 (en) | 2002-04-19 | 2008-02-19 | Pelikan Technologies, Inc. | Method and apparatus for penetrating tissue |
| US7708701B2 (en) | 2002-04-19 | 2010-05-04 | Pelikan Technologies, Inc. | Method and apparatus for a multi-use body fluid sampling device |
| US9795334B2 (en) | 2002-04-19 | 2017-10-24 | Sanofi-Aventis Deutschland Gmbh | Method and apparatus for penetrating tissue |
| US7976476B2 (en) | 2002-04-19 | 2011-07-12 | Pelikan Technologies, Inc. | Device and method for variable speed lancet |
| AU2003230256B2 (en)* | 2002-05-06 | 2009-06-04 | Becton, Dickinson And Company | Method and device for controlling drug pharmacokinetics |
| US8574895B2 (en) | 2002-12-30 | 2013-11-05 | Sanofi-Aventis Deutschland Gmbh | Method and apparatus using optical techniques to measure analyte levels |
| US7811231B2 (en) | 2002-12-31 | 2010-10-12 | Abbott Diabetes Care Inc. | Continuous glucose monitoring system and methods of use |
| US7016715B2 (en)* | 2003-01-13 | 2006-03-21 | Nellcorpuritan Bennett Incorporated | Selection of preset filter parameters based on signal quality |
| US7850621B2 (en) | 2003-06-06 | 2010-12-14 | Pelikan Technologies, Inc. | Method and apparatus for body fluid sampling and analyte sensing |
| US20040253736A1 (en)* | 2003-06-06 | 2004-12-16 | Phil Stout | Analytical device with prediction module and related methods |
| US8066639B2 (en) | 2003-06-10 | 2011-11-29 | Abbott Diabetes Care Inc. | Glucose measuring device for use in personal area network |
| WO2006001797A1 (en) | 2004-06-14 | 2006-01-05 | Pelikan Technologies, Inc. | Low pain penetrating |
| EP1635700B1 (en) | 2003-06-13 | 2016-03-09 | Sanofi-Aventis Deutschland GmbH | Apparatus for a point of care device |
| US8423113B2 (en) | 2003-07-25 | 2013-04-16 | Dexcom, Inc. | Systems and methods for processing sensor data |
| US7774145B2 (en) | 2003-08-01 | 2010-08-10 | Dexcom, Inc. | Transcutaneous analyte sensor |
| US9135402B2 (en) | 2007-12-17 | 2015-09-15 | Dexcom, Inc. | Systems and methods for processing sensor data |
| US7986986B2 (en) | 2003-08-01 | 2011-07-26 | Dexcom, Inc. | System and methods for processing analyte sensor data |
| US7591801B2 (en) | 2004-02-26 | 2009-09-22 | Dexcom, Inc. | Integrated delivery device for continuous glucose sensor |
| US8275437B2 (en) | 2003-08-01 | 2012-09-25 | Dexcom, Inc. | Transcutaneous analyte sensor |
| US20100168657A1 (en) | 2003-08-01 | 2010-07-01 | Dexcom, Inc. | System and methods for processing analyte sensor data |
| US8060173B2 (en) | 2003-08-01 | 2011-11-15 | Dexcom, Inc. | System and methods for processing analyte sensor data |
| US8886273B2 (en) | 2003-08-01 | 2014-11-11 | Dexcom, Inc. | Analyte sensor |
| US8845536B2 (en) | 2003-08-01 | 2014-09-30 | Dexcom, Inc. | Transcutaneous analyte sensor |
| US8160669B2 (en) | 2003-08-01 | 2012-04-17 | Dexcom, Inc. | Transcutaneous analyte sensor |
| US8369919B2 (en) | 2003-08-01 | 2013-02-05 | Dexcom, Inc. | Systems and methods for processing sensor data |
| US20190357827A1 (en) | 2003-08-01 | 2019-11-28 | Dexcom, Inc. | Analyte sensor |
| US7519408B2 (en)* | 2003-11-19 | 2009-04-14 | Dexcom, Inc. | Integrated receiver for continuous analyte sensor |
| US8761856B2 (en) | 2003-08-01 | 2014-06-24 | Dexcom, Inc. | System and methods for processing analyte sensor data |
| US20080119703A1 (en) | 2006-10-04 | 2008-05-22 | Mark Brister | Analyte sensor |
| US20140121989A1 (en) | 2003-08-22 | 2014-05-01 | Dexcom, Inc. | Systems and methods for processing analyte sensor data |
| US7920906B2 (en) | 2005-03-10 | 2011-04-05 | Dexcom, Inc. | System and methods for processing analyte sensor data for sensor calibration |
| DE10343863A1 (en)* | 2003-09-23 | 2005-04-14 | Roche Diagnostics Gmbh | Method and device for continuously monitoring the concentration of an analyte |
| US8282576B2 (en) | 2003-09-29 | 2012-10-09 | Sanofi-Aventis Deutschland Gmbh | Method and apparatus for an improved sample capture device |
| US9123077B2 (en) | 2003-10-07 | 2015-09-01 | Hospira, Inc. | Medication management system |
| US8065161B2 (en) | 2003-11-13 | 2011-11-22 | Hospira, Inc. | System for maintaining drug information and communicating with medication delivery devices |
| EP1680014A4 (en) | 2003-10-14 | 2009-01-21 | Pelikan Technologies Inc | METHOD AND DEVICE FOR A VARIABLE USER INTERFACE |
| US20050119866A1 (en)* | 2003-11-14 | 2005-06-02 | Zaleski John R. | Medical parameter processing system |
| US9247900B2 (en) | 2004-07-13 | 2016-02-02 | Dexcom, Inc. | Analyte sensor |
| US8423114B2 (en) | 2006-10-04 | 2013-04-16 | Dexcom, Inc. | Dual electrode system for a continuous analyte sensor |
| ATE480761T1 (en) | 2003-12-05 | 2010-09-15 | Dexcom Inc | CALIBRATION METHODS FOR A CONTINUOUSLY WORKING ANALYTICAL SENSOR |
| US11633133B2 (en) | 2003-12-05 | 2023-04-25 | Dexcom, Inc. | Dual electrode system for a continuous analyte sensor |
| US8364231B2 (en) | 2006-10-04 | 2013-01-29 | Dexcom, Inc. | Analyte sensor |
| US8287453B2 (en) | 2003-12-05 | 2012-10-16 | Dexcom, Inc. | Analyte sensor |
| EP2301428B1 (en) | 2003-12-09 | 2016-11-30 | Dexcom, Inc. | Signal processing for continuous analyte sensor |
| US7822454B1 (en) | 2005-01-03 | 2010-10-26 | Pelikan Technologies, Inc. | Fluid sampling device with improved analyte detecting member configuration |
| US8668656B2 (en) | 2003-12-31 | 2014-03-11 | Sanofi-Aventis Deutschland Gmbh | Method and apparatus for improving fluidic flow and sample capture |
| US20050182500A1 (en)* | 2004-02-17 | 2005-08-18 | Continuous Control Solutions, Inc. | Time delay definition |
| WO2005089103A2 (en) | 2004-02-17 | 2005-09-29 | Therasense, Inc. | Method and system for providing data communication in continuous glucose monitoring and management system |
| US8808228B2 (en) | 2004-02-26 | 2014-08-19 | Dexcom, Inc. | Integrated medicament delivery device for use with continuous analyte sensor |
| WO2009048462A1 (en) | 2007-10-09 | 2009-04-16 | Dexcom, Inc. | Integrated insulin delivery system with continuous glucose sensor |
| US8792955B2 (en) | 2004-05-03 | 2014-07-29 | Dexcom, Inc. | Transcutaneous analyte sensor |
| WO2006011062A2 (en) | 2004-05-20 | 2006-02-02 | Albatros Technologies Gmbh & Co. Kg | Printable hydrogel for biosensors |
| WO2005120365A1 (en) | 2004-06-03 | 2005-12-22 | Pelikan Technologies, Inc. | Method and apparatus for a fluid sampling device |
| US7755503B2 (en)* | 2004-06-16 | 2010-07-13 | Dell Products L.P. | System and method for error messaging of an incorrect information handling system graphics cable connection |
| US7654956B2 (en) | 2004-07-13 | 2010-02-02 | Dexcom, Inc. | Transcutaneous analyte sensor |
| US7783333B2 (en) | 2004-07-13 | 2010-08-24 | Dexcom, Inc. | Transcutaneous medical device with variable stiffness |
| US8452368B2 (en) | 2004-07-13 | 2013-05-28 | Dexcom, Inc. | Transcutaneous analyte sensor |
| US20070045902A1 (en) | 2004-07-13 | 2007-03-01 | Brauker James H | Analyte sensor |
| US20060016700A1 (en) | 2004-07-13 | 2006-01-26 | Dexcom, Inc. | Transcutaneous analyte sensor |
| JP4870075B2 (en)* | 2004-07-13 | 2012-02-08 | デックスコム・インコーポレーテッド | Transcutaneous analyte sensor |
| US8886272B2 (en) | 2004-07-13 | 2014-11-11 | Dexcom, Inc. | Analyte sensor |
| US8565848B2 (en) | 2004-07-13 | 2013-10-22 | Dexcom, Inc. | Transcutaneous analyte sensor |
| US20080027679A1 (en)* | 2004-07-21 | 2008-01-31 | Dror Shklarski | Wearable Device, System and Method for Measuring Physiological and/or Environmental Parameters |
| US8396670B2 (en)* | 2004-08-16 | 2013-03-12 | Venture Milling, Inc. | Process, system and method for improving the determination of digestive effects upon an ingestable substance |
| EP1788931A1 (en)* | 2004-09-03 | 2007-05-30 | Novo Nordisk A/S | System and method for estimating the glucose concentration in blood |
| FR2874807B1 (en)* | 2004-09-03 | 2006-11-10 | Memscap Sa | DEVICE FOR ANALYZING THE PHYSICO-CHEMICAL PROPERTIES OF THE SKIN |
| US20070191716A1 (en)* | 2004-09-29 | 2007-08-16 | Daniel Goldberger | Blood monitoring system |
| US7608042B2 (en)* | 2004-09-29 | 2009-10-27 | Intellidx, Inc. | Blood monitoring system |
| US20060229531A1 (en)* | 2005-02-01 | 2006-10-12 | Daniel Goldberger | Blood monitoring system |
| US20060069436A1 (en)* | 2004-09-30 | 2006-03-30 | Depuy Spine, Inc. | Trial disk implant |
| US9636450B2 (en) | 2007-02-19 | 2017-05-02 | Udo Hoss | Pump system modular components for delivering medication and analyte sensing at seperate insertion sites |
| US8652831B2 (en) | 2004-12-30 | 2014-02-18 | Sanofi-Aventis Deutschland Gmbh | Method and apparatus for analyte measurement test time |
| AU2006204886B2 (en) | 2005-01-13 | 2011-08-04 | Welch Allyn, Inc. | Vital signs monitor |
| US7545272B2 (en) | 2005-02-08 | 2009-06-09 | Therasense, Inc. | RF tag on test strips, test strip vials and boxes |
| US8133178B2 (en) | 2006-02-22 | 2012-03-13 | Dexcom, Inc. | Analyte sensor |
| US7509156B2 (en)* | 2005-05-18 | 2009-03-24 | Clarian Health Partners, Inc. | System for managing glucose levels in patients with diabetes or hyperglycemia |
| US8880138B2 (en) | 2005-09-30 | 2014-11-04 | Abbott Diabetes Care Inc. | Device for channeling fluid and methods of use |
| US20070088271A1 (en)* | 2005-10-18 | 2007-04-19 | Richards Cynthia C | Medication device |
| US7766829B2 (en) | 2005-11-04 | 2010-08-03 | Abbott Diabetes Care Inc. | Method and system for providing basal profile modification in analyte monitoring and management systems |
| US20070123801A1 (en)* | 2005-11-28 | 2007-05-31 | Daniel Goldberger | Wearable, programmable automated blood testing system |
| US20080200838A1 (en)* | 2005-11-28 | 2008-08-21 | Daniel Goldberger | Wearable, programmable automated blood testing system |
| WO2007070247A2 (en)* | 2005-11-29 | 2007-06-21 | Venture Gain, L.L.C. | Residual-based monitoring of human health |
| US7826879B2 (en) | 2006-02-28 | 2010-11-02 | Abbott Diabetes Care Inc. | Analyte sensors and methods of use |
| WO2007102842A2 (en) | 2006-03-09 | 2007-09-13 | Dexcom, Inc. | Systems and methods for processing analyte sensor data |
| US8226891B2 (en) | 2006-03-31 | 2012-07-24 | Abbott Diabetes Care Inc. | Analyte monitoring devices and methods therefor |
| US8140312B2 (en)* | 2007-05-14 | 2012-03-20 | Abbott Diabetes Care Inc. | Method and system for determining analyte levels |
| US9392969B2 (en) | 2008-08-31 | 2016-07-19 | Abbott Diabetes Care Inc. | Closed loop control and signal attenuation detection |
| US8346335B2 (en) | 2008-03-28 | 2013-01-01 | Abbott Diabetes Care Inc. | Analyte sensor calibration management |
| US7618369B2 (en) | 2006-10-02 | 2009-11-17 | Abbott Diabetes Care Inc. | Method and system for dynamically updating calibration parameters for an analyte sensor |
| US8374668B1 (en) | 2007-10-23 | 2013-02-12 | Abbott Diabetes Care Inc. | Analyte sensor with lag compensation |
| US7653425B2 (en) | 2006-08-09 | 2010-01-26 | Abbott Diabetes Care Inc. | Method and system for providing calibration of an analyte sensor in an analyte monitoring system |
| US8478557B2 (en) | 2009-07-31 | 2013-07-02 | Abbott Diabetes Care Inc. | Method and apparatus for providing analyte monitoring system calibration accuracy |
| US7620438B2 (en) | 2006-03-31 | 2009-11-17 | Abbott Diabetes Care Inc. | Method and system for powering an electronic device |
| US8473022B2 (en) | 2008-01-31 | 2013-06-25 | Abbott Diabetes Care Inc. | Analyte sensor with time lag compensation |
| US7801582B2 (en) | 2006-03-31 | 2010-09-21 | Abbott Diabetes Care Inc. | Analyte monitoring and management system and methods therefor |
| US20070243567A1 (en)* | 2006-04-13 | 2007-10-18 | Syhhong Chang | Beta cell mimicking control algorithm for artificial pancreas |
| US8092385B2 (en)* | 2006-05-23 | 2012-01-10 | Intellidx, Inc. | Fluid access interface |
| US20090209938A1 (en)* | 2006-05-29 | 2009-08-20 | Wristop Technologies Oy | Apparatus and method for dosing drug and wireless remote control of a drug pump |
| WO2007143225A2 (en) | 2006-06-07 | 2007-12-13 | Abbott Diabetes Care, Inc. | Analyte monitoring system and method |
| AU2007353360B2 (en)* | 2006-06-13 | 2013-08-29 | Carefusion 303, Inc. | System and method for optimizing control of PCA and PCEA system |
| EP1875933A1 (en)* | 2006-07-06 | 2008-01-09 | Debiotech S.A. | Medical device for delivery of a solution |
| US8388534B2 (en)* | 2006-10-11 | 2013-03-05 | Samsung Electronics Co., Ltd. | Apparatus for providing skin care information by measuring skin moisture content and method and medium for the same |
| AU2007317669A1 (en) | 2006-10-16 | 2008-05-15 | Hospira, Inc. | System and method for comparing and utilizing activity information and configuration information from mulitple device management systems |
| US20080306353A1 (en)* | 2006-11-03 | 2008-12-11 | Douglas Joel S | Calculation device for metabolic control of critically ill and/or diabetic patients |
| US20080199894A1 (en) | 2007-02-15 | 2008-08-21 | Abbott Diabetes Care, Inc. | Device and method for automatic data acquisition and/or detection |
| US8732188B2 (en) | 2007-02-18 | 2014-05-20 | Abbott Diabetes Care Inc. | Method and system for providing contextual based medication dosage determination |
| US8930203B2 (en) | 2007-02-18 | 2015-01-06 | Abbott Diabetes Care Inc. | Multi-function analyte test device and methods therefor |
| US8123686B2 (en) | 2007-03-01 | 2012-02-28 | Abbott Diabetes Care Inc. | Method and apparatus for providing rolling data in communication systems |
| WO2008130897A2 (en) | 2007-04-14 | 2008-10-30 | Abbott Diabetes Care, Inc. | Method and apparatus for providing data processing and control in medical communication system |
| CA2683953C (en) | 2007-04-14 | 2016-08-02 | Abbott Diabetes Care Inc. | Method and apparatus for providing data processing and control in medical communication system |
| US10111608B2 (en) | 2007-04-14 | 2018-10-30 | Abbott Diabetes Care Inc. | Method and apparatus for providing data processing and control in medical communication system |
| EP2137637A4 (en)* | 2007-04-14 | 2012-06-20 | Abbott Diabetes Care Inc | Method and apparatus for providing data processing and control in medical communication system |
| WO2008130898A1 (en) | 2007-04-14 | 2008-10-30 | Abbott Diabetes Care, Inc. | Method and apparatus for providing data processing and control in medical communication system |
| WO2008130895A2 (en) | 2007-04-14 | 2008-10-30 | Abbott Diabetes Care, Inc. | Method and apparatus for providing dynamic multi-stage signal amplification in a medical device |
| US8461985B2 (en) | 2007-05-08 | 2013-06-11 | Abbott Diabetes Care Inc. | Analyte monitoring system and methods |
| US7928850B2 (en) | 2007-05-08 | 2011-04-19 | Abbott Diabetes Care Inc. | Analyte monitoring system and methods |
| US8665091B2 (en) | 2007-05-08 | 2014-03-04 | Abbott Diabetes Care Inc. | Method and device for determining elapsed sensor life |
| US8456301B2 (en) | 2007-05-08 | 2013-06-04 | Abbott Diabetes Care Inc. | Analyte monitoring system and methods |
| US8260558B2 (en) | 2007-05-14 | 2012-09-04 | Abbott Diabetes Care Inc. | Method and apparatus for providing data processing and control in a medical communication system |
| US8560038B2 (en) | 2007-05-14 | 2013-10-15 | Abbott Diabetes Care Inc. | Method and apparatus for providing data processing and control in a medical communication system |
| US8103471B2 (en) | 2007-05-14 | 2012-01-24 | Abbott Diabetes Care Inc. | Method and apparatus for providing data processing and control in a medical communication system |
| US10002233B2 (en) | 2007-05-14 | 2018-06-19 | Abbott Diabetes Care Inc. | Method and apparatus for providing data processing and control in a medical communication system |
| US8239166B2 (en) | 2007-05-14 | 2012-08-07 | Abbott Diabetes Care Inc. | Method and apparatus for providing data processing and control in a medical communication system |
| US8600681B2 (en) | 2007-05-14 | 2013-12-03 | Abbott Diabetes Care Inc. | Method and apparatus for providing data processing and control in a medical communication system |
| US9125548B2 (en) | 2007-05-14 | 2015-09-08 | Abbott Diabetes Care Inc. | Method and apparatus for providing data processing and control in a medical communication system |
| US8444560B2 (en) | 2007-05-14 | 2013-05-21 | Abbott Diabetes Care Inc. | Method and apparatus for providing data processing and control in a medical communication system |
| WO2008154312A1 (en) | 2007-06-08 | 2008-12-18 | Dexcom, Inc. | Integrated medicament delivery device for use with continuous analyte sensor |
| EP2006786B1 (en)* | 2007-06-18 | 2018-05-09 | Roche Diabetes Care GmbH | Method and glucose monitoring system for monitoring individual metabolic response and for generating nutritional feedback |
| US8834366B2 (en) | 2007-07-31 | 2014-09-16 | Abbott Diabetes Care Inc. | Method and apparatus for providing analyte sensor calibration |
| US20090143725A1 (en)* | 2007-08-31 | 2009-06-04 | Abbott Diabetes Care, Inc. | Method of Optimizing Efficacy of Therapeutic Agent |
| DE102007046864A1 (en)* | 2007-09-28 | 2009-04-09 | Endress + Hauser Conducta Gesellschaft für Mess- und Regeltechnik mbH + Co. KG | Measured value plausibility and quality evaluating method for e.g. control circuit, involves forming and evaluating derivative of measured value according to time, where measured value is compared with predefined warning limit value |
| GB0719969D0 (en) | 2007-10-12 | 2007-11-21 | Cambridge Entpr Ltd | Substance monitoring and control in human or animal bodies |
| US8377031B2 (en) | 2007-10-23 | 2013-02-19 | Abbott Diabetes Care Inc. | Closed loop control system with safety parameters and methods |
| US8409093B2 (en) | 2007-10-23 | 2013-04-02 | Abbott Diabetes Care Inc. | Assessing measures of glycemic variability |
| US8417312B2 (en) | 2007-10-25 | 2013-04-09 | Dexcom, Inc. | Systems and methods for processing sensor data |
| US8290559B2 (en) | 2007-12-17 | 2012-10-16 | Dexcom, Inc. | Systems and methods for processing sensor data |
| US9026370B2 (en) | 2007-12-18 | 2015-05-05 | Hospira, Inc. | User interface improvements for medical devices |
| US20090164239A1 (en) | 2007-12-19 | 2009-06-25 | Abbott Diabetes Care, Inc. | Dynamic Display Of Glucose Information |
| EP2252196A4 (en) | 2008-02-21 | 2013-05-15 | Dexcom Inc | Systems and methods for processing, transmitting and displaying sensor data |
| IL197532A0 (en) | 2008-03-21 | 2009-12-24 | Lifescan Scotland Ltd | Analyte testing method and system |
| US8396528B2 (en) | 2008-03-25 | 2013-03-12 | Dexcom, Inc. | Analyte sensor |
| JP2011516128A (en)* | 2008-03-31 | 2011-05-26 | オナブラブ・エービー | Method and apparatus for non-invasive determination of the concentration of a substance in a body fluid |
| US10624577B2 (en) | 2008-04-04 | 2020-04-21 | Hygieia, Inc. | Systems, devices, and methods for alleviating glucotoxicity and restoring pancreatic beta-cell function in advanced diabetes mellitus |
| ES2670793T3 (en) | 2008-04-04 | 2018-06-01 | Hygieia, Inc. | Apparatus for optimizing an insulin dosage regimen for a patient |
| US9220456B2 (en) | 2008-04-04 | 2015-12-29 | Hygieia, Inc. | Systems, methods and devices for achieving glycemic balance |
| EP2265324B1 (en) | 2008-04-11 | 2015-01-28 | Sanofi-Aventis Deutschland GmbH | Integrated analyte measurement system |
| EP2276405A4 (en)* | 2008-05-12 | 2013-10-09 | Us Dept Veterans Affairs | AUTOMATED SYSTEM AND AUTOMATED METHOD FOR THE CONTROL OF DIABETES |
| US8876755B2 (en) | 2008-07-14 | 2014-11-04 | Abbott Diabetes Care Inc. | Closed loop control system interface and methods |
| EP2328206A1 (en)* | 2008-07-16 | 2011-06-01 | Panasonic Corporation | Battery pack |
| US8762306B2 (en)* | 2008-08-14 | 2014-06-24 | The University Of Toledo | Neural network for glucose therapy recommendation |
| US20100057040A1 (en) | 2008-08-31 | 2010-03-04 | Abbott Diabetes Care, Inc. | Robust Closed Loop Control And Methods |
| US8622988B2 (en) | 2008-08-31 | 2014-01-07 | Abbott Diabetes Care Inc. | Variable rate closed loop control and methods |
| US9943644B2 (en) | 2008-08-31 | 2018-04-17 | Abbott Diabetes Care Inc. | Closed loop control with reference measurement and methods thereof |
| US8734422B2 (en) | 2008-08-31 | 2014-05-27 | Abbott Diabetes Care Inc. | Closed loop control with improved alarm functions |
| US8986208B2 (en) | 2008-09-30 | 2015-03-24 | Abbott Diabetes Care Inc. | Analyte sensor sensitivity attenuation mitigation |
| US20100174228A1 (en)* | 2008-10-24 | 2010-07-08 | Bruce Buckingham | Hypoglycemia prediction and control |
| WO2010056718A2 (en) | 2008-11-11 | 2010-05-20 | Hygieia, Inc. | Apparatus and system for diabetes management |
| US8103456B2 (en) | 2009-01-29 | 2012-01-24 | Abbott Diabetes Care Inc. | Method and device for early signal attenuation detection using blood glucose measurements |
| US9375169B2 (en) | 2009-01-30 | 2016-06-28 | Sanofi-Aventis Deutschland Gmbh | Cam drive for managing disposable penetrating member actions with a single motor and motor and control system |
| FR2942387A1 (en)* | 2009-02-23 | 2010-08-27 | Ecole Superieure Electricite | SYSTEM FOR REGULATING BLOOD GLUCOSE WITH LIVING DIABETIC SUBJECT AND CORRESPONDING COMPUTER PROGRAM PRODUCT. |
| EP2400882B8 (en)* | 2009-02-26 | 2017-08-30 | DreaMed Diabetes Ltd | Method and system for automatic monitoring of diabetes related treatments |
| US8753290B2 (en)* | 2009-03-27 | 2014-06-17 | Intellectual Inspiration, Llc | Fluid transfer system and method |
| US9446194B2 (en) | 2009-03-27 | 2016-09-20 | Dexcom, Inc. | Methods and systems for promoting glucose management |
| US8497777B2 (en) | 2009-04-15 | 2013-07-30 | Abbott Diabetes Care Inc. | Analyte monitoring system having an alert |
| US8271106B2 (en) | 2009-04-17 | 2012-09-18 | Hospira, Inc. | System and method for configuring a rule set for medical event management and responses |
| DE102009018649A1 (en) | 2009-04-23 | 2010-10-28 | Fresenius Medical Care Deutschland Gmbh | Dialysis machine, method and apparatus for a dialysis machine |
| WO2010127050A1 (en) | 2009-04-28 | 2010-11-04 | Abbott Diabetes Care Inc. | Error detection in critical repeating data in a wireless sensor system |
| EP2425209A4 (en) | 2009-04-29 | 2013-01-09 | Abbott Diabetes Care Inc | METHOD AND SYSTEM FOR PROVIDING REAL-TIME ANALYTE SENSOR CALIBRATION WITH RETROSPECTIVE FILLING |
| EP2424435B1 (en) | 2009-04-30 | 2021-06-02 | Dexcom, Inc. | Performance reports associated with continuous sensor data from multiple analysis time periods |
| US20100279418A1 (en)* | 2009-05-04 | 2010-11-04 | Loren Robert Larson | Glucose meter adaptable for use with handheld devices, and associated communication network |
| WO2010135646A1 (en) | 2009-05-22 | 2010-11-25 | Abbott Diabetes Care Inc. | Usability features for integrated insulin delivery system |
| WO2010138856A1 (en) | 2009-05-29 | 2010-12-02 | Abbott Diabetes Care Inc. | Medical device antenna systems having external antenna configurations |
| GB2471066A (en)* | 2009-06-10 | 2010-12-22 | Dna Electronics Ltd | A glucagon pump controller |
| DK3689237T3 (en) | 2009-07-23 | 2021-08-16 | Abbott Diabetes Care Inc | Method of preparation and system for continuous analyte measurement |
| US8798934B2 (en) | 2009-07-23 | 2014-08-05 | Abbott Diabetes Care Inc. | Real time management of data relating to physiological control of glucose levels |
| LT4147999T (en) | 2009-08-31 | 2024-10-10 | Abbott Diabetes Care, Inc. | MEDICAL DEVICE DISPLAYS |
| US9314195B2 (en) | 2009-08-31 | 2016-04-19 | Abbott Diabetes Care Inc. | Analyte signal processing device and methods |
| US8993331B2 (en) | 2009-08-31 | 2015-03-31 | Abbott Diabetes Care Inc. | Analyte monitoring system and methods for managing power and noise |
| US9320461B2 (en) | 2009-09-29 | 2016-04-26 | Abbott Diabetes Care Inc. | Method and apparatus for providing notification function in analyte monitoring systems |
| KR20120102048A (en) | 2009-09-30 | 2012-09-17 | 모르 리서치 애플리케이션즈 리미티드 | Monitoring device for management of insulin delivery |
| US8538740B2 (en)* | 2009-10-14 | 2013-09-17 | International Business Machines Corporation | Real-time performance modeling of software systems with multi-class workload |
| EP2319394A1 (en)* | 2009-11-05 | 2011-05-11 | Rus Medical Technology S.A. | Non-invasive device and method for monitoring analytes in biological samples |
| US8771251B2 (en) | 2009-12-17 | 2014-07-08 | Hospira, Inc. | Systems and methods for managing and delivering patient therapy through electronic drug delivery systems |
| US20110184265A1 (en)* | 2010-01-22 | 2011-07-28 | Abbott Diabetes Care Inc. | Method and Apparatus for Providing Notification in Analyte Monitoring Systems |
| US8843321B2 (en)* | 2010-01-26 | 2014-09-23 | Roche Diagnostics Operations, Inc. | Methods and systems for processing glucose data measured from a person having diabetes |
| EP2552301B1 (en)* | 2010-03-26 | 2019-10-16 | University Of Virginia Patent Foundation | System for improving the accuracy of glucose sensors using insulin delivery observation in diabetes |
| US9089292B2 (en)* | 2010-03-26 | 2015-07-28 | Medtronic Minimed, Inc. | Calibration of glucose monitoring sensor and/or insulin delivery system |
| US8965476B2 (en) | 2010-04-16 | 2015-02-24 | Sanofi-Aventis Deutschland Gmbh | Tissue penetration device |
| US8636711B2 (en)* | 2010-06-14 | 2014-01-28 | Legacy Emanuel Hospital & Health Center | Stabilized glucagon solutions and uses therefor |
| US11213226B2 (en) | 2010-10-07 | 2022-01-04 | Abbott Diabetes Care Inc. | Analyte monitoring devices and methods |
| EP2697650B1 (en) | 2011-04-15 | 2020-09-30 | Dexcom, Inc. | Advanced analyte sensor calibration and error detection |
| US9974472B2 (en) | 2011-06-16 | 2018-05-22 | Abbott Diabetes Care Inc. | Temperature-compensated analyte monitoring devices, systems, and methods thereof |
| AU2012299169B2 (en) | 2011-08-19 | 2017-08-24 | Icu Medical, Inc. | Systems and methods for a graphical interface including a graphical representation of medical data |
| CN106326651A (en)* | 2011-08-26 | 2017-01-11 | 弗吉尼亚大学专利基金会 | Method and system for adaptive advisory control of diabetes |
| CA2852271A1 (en) | 2011-10-21 | 2013-04-25 | Hospira, Inc. | Medical device update system |
| US8710993B2 (en) | 2011-11-23 | 2014-04-29 | Abbott Diabetes Care Inc. | Mitigating single point failure of devices in an analyte monitoring system and methods thereof |
| US9317656B2 (en) | 2011-11-23 | 2016-04-19 | Abbott Diabetes Care Inc. | Compatibility mechanisms for devices in a continuous analyte monitoring system and methods thereof |
| WO2013078426A2 (en) | 2011-11-25 | 2013-05-30 | Abbott Diabetes Care Inc. | Analyte monitoring system and methods of use |
| EP2785294B1 (en)* | 2011-11-30 | 2016-11-23 | AMO Development, LLC | System and method for ophthalmic surface measurements based on sequential estimates |
| US9510747B2 (en)* | 2011-11-30 | 2016-12-06 | Amo Development, Llc | System and method for ophthalmic surface measurements based on objective quality estimation |
| US10022498B2 (en) | 2011-12-16 | 2018-07-17 | Icu Medical, Inc. | System for monitoring and delivering medication to a patient and method of using the same to minimize the risks associated with automated therapy |
| US20130231543A1 (en)* | 2012-03-05 | 2013-09-05 | Andrea Facchinetti | Method to improve safety monitoring in type-1 diabetic patients by detecting in real-time failures of the glucose |
| JP6306566B2 (en) | 2012-03-30 | 2018-04-04 | アイシーユー・メディカル・インコーポレーテッド | Air detection system and method for detecting air in an infusion system pump |
| AU2013296555B2 (en) | 2012-07-31 | 2017-10-19 | Icu Medical, Inc. | Patient care system for critical medications |
| US10132793B2 (en) | 2012-08-30 | 2018-11-20 | Abbott Diabetes Care Inc. | Dropout detection in continuous analyte monitoring data during data excursions |
| US9968306B2 (en) | 2012-09-17 | 2018-05-15 | Abbott Diabetes Care Inc. | Methods and apparatuses for providing adverse condition notification with enhanced wireless communication range in analyte monitoring systems |
| US11081234B2 (en) | 2012-10-04 | 2021-08-03 | Analytic Diabetic Systems, Inc. | Clinical support systems and methods |
| US9119529B2 (en) | 2012-10-30 | 2015-09-01 | Dexcom, Inc. | Systems and methods for dynamically and intelligently monitoring a host's glycemic condition after an alert is triggered |
| WO2014068743A1 (en)* | 2012-11-01 | 2014-05-08 | テルモ株式会社 | Sensing device and sensing method |
| WO2014109898A1 (en)* | 2013-01-14 | 2014-07-17 | The Regents Of University Of California | Model-based personalization scheme of an artificial pancreas for type i diabetes applications |
| US9227014B2 (en)* | 2013-02-07 | 2016-01-05 | The Board Of Trustees Of The Laland Stanford Junior University | Kalman filter based on-off switch for insulin pump |
| WO2014138446A1 (en) | 2013-03-06 | 2014-09-12 | Hospira,Inc. | Medical device communication method |
| US10098585B2 (en) | 2013-03-15 | 2018-10-16 | Cadwell Laboratories, Inc. | Neuromonitoring systems and methods |
| AU2014268355B2 (en) | 2013-05-24 | 2018-06-14 | Icu Medical, Inc. | Multi-sensor infusion system for detecting air or an occlusion in the infusion system |
| US10166328B2 (en) | 2013-05-29 | 2019-01-01 | Icu Medical, Inc. | Infusion system which utilizes one or more sensors and additional information to make an air determination regarding the infusion system |
| WO2014194065A1 (en) | 2013-05-29 | 2014-12-04 | Hospira, Inc. | Infusion system and method of use which prevents over-saturation of an analog-to-digital converter |
| CA2910596C (en) | 2013-07-19 | 2021-07-20 | Dexcom, Inc. | Time averaged basal rate optimizer |
| EP3039596A4 (en) | 2013-08-30 | 2017-04-12 | Hospira, Inc. | System and method of monitoring and managing a remote infusion regimen |
| US9662436B2 (en) | 2013-09-20 | 2017-05-30 | Icu Medical, Inc. | Fail-safe drug infusion therapy system |
| FI3060276T3 (en) | 2013-10-24 | 2023-06-07 | Infusion system for preventing mischanneling of multiple medicaments | |
| US10311972B2 (en) | 2013-11-11 | 2019-06-04 | Icu Medical, Inc. | Medical device system performance index |
| EP3071253B1 (en) | 2013-11-19 | 2019-05-22 | ICU Medical, Inc. | Infusion pump automation system and method |
| US10569015B2 (en) | 2013-12-02 | 2020-02-25 | Bigfoot Biomedical, Inc. | Infusion pump system and method |
| US9750877B2 (en)* | 2013-12-11 | 2017-09-05 | Medtronic Minimed, Inc. | Predicted time to assess and/or control a glycemic state |
| US9233204B2 (en) | 2014-01-31 | 2016-01-12 | Aseko, Inc. | Insulin management |
| US9486580B2 (en) | 2014-01-31 | 2016-11-08 | Aseko, Inc. | Insulin management |
| EP3110474B1 (en) | 2014-02-28 | 2019-12-18 | ICU Medical, Inc. | Infusion system and method which utilizes dual wavelength optical air-in-line detection |
| US10722650B2 (en) | 2014-03-28 | 2020-07-28 | Roche Diabetes Care, Inc. | System and method for adjusting therapy based on risk associated with a glucose state |
| EP3138032B1 (en) | 2014-04-30 | 2024-07-24 | ICU Medical, Inc. | Patient care system with conditional alarm forwarding |
| US11344673B2 (en) | 2014-05-29 | 2022-05-31 | Icu Medical, Inc. | Infusion system and pump with configurable closed loop delivery rate catch-up |
| US9724470B2 (en) | 2014-06-16 | 2017-08-08 | Icu Medical, Inc. | System for monitoring and delivering medication to a patient and method of using the same to minimize the risks associated with automated therapy |
| EP2979623A1 (en)* | 2014-07-28 | 2016-02-03 | Roche Diagnostics GmbH | Medical sensor assembly |
| CN106999110A (en)* | 2014-08-14 | 2017-08-01 | 弗吉尼亚大学专利基金会 | Continuous glucose monitoring method, system and device with improved accuracy |
| US9539383B2 (en) | 2014-09-15 | 2017-01-10 | Hospira, Inc. | System and method that matches delayed infusion auto-programs with manually entered infusion programs and analyzes differences therein |
| CA2927335C (en) | 2014-10-27 | 2023-05-02 | Aseko, Inc. | Subcutaneous outpatient management |
| US11081226B2 (en) | 2014-10-27 | 2021-08-03 | Aseko, Inc. | Method and controller for administering recommended insulin dosages to a patient |
| WO2016096241A1 (en) | 2014-12-18 | 2016-06-23 | Gambro Lundia Ab | Method of displaying a predicted state, medical apparatus and computer program |
| US11344668B2 (en) | 2014-12-19 | 2022-05-31 | Icu Medical, Inc. | Infusion system with concurrent TPN/insulin infusion |
| US10850024B2 (en) | 2015-03-02 | 2020-12-01 | Icu Medical, Inc. | Infusion system, device, and method having advanced infusion features |
| US9878097B2 (en) | 2015-04-29 | 2018-01-30 | Bigfoot Biomedical, Inc. | Operating an infusion pump system |
| EP3304370B1 (en) | 2015-05-26 | 2020-12-30 | ICU Medical, Inc. | Infusion pump system and method with multiple drug library editor source capability |
| US20180177963A1 (en)* | 2015-06-02 | 2018-06-28 | Koninklijke Philips N.V. | Non-invasive method for monitoring patient respiratory status via successive parameter estimation |
| EP3319662B1 (en) | 2015-07-08 | 2023-09-13 | Trustees of Boston University | Infusion system and components thereof |
| DE202016009220U1 (en) | 2015-07-10 | 2024-07-09 | Abbott Diabetes Care, Inc. | Device and system for dynamic glucose profile response to physiological parameters |
| WO2017027432A1 (en) | 2015-08-07 | 2017-02-16 | Aptima, Inc. | Systems and methods to support medical therapy decisions |
| WO2017031440A1 (en) | 2015-08-20 | 2017-02-23 | Aseko, Inc. | Diabetes management therapy advisor |
| JP6553741B2 (en)* | 2015-11-25 | 2019-07-31 | 日本電信電話株式会社 | Respiration estimation method and apparatus |
| US10449294B1 (en) | 2016-01-05 | 2019-10-22 | Bigfoot Biomedical, Inc. | Operating an infusion pump system |
| AU2016385454B2 (en) | 2016-01-05 | 2021-12-16 | Bigfoot Biomedical, Inc. | Operating multi-modal medicine delivery systems |
| CN107924715A (en)* | 2016-01-25 | 2018-04-17 | 普雷迪科特医疗有限公司 | Estimate material concentration using multiple non-invasive sensors |
| US10575790B2 (en) | 2016-03-02 | 2020-03-03 | Roche Diabetes Care, Inc. | Patient diabetes monitoring system with clustering of unsupervised daily CGM profiles (or insulin profiles) and method thereof |
| US10478556B2 (en) | 2016-03-04 | 2019-11-19 | Roche Diabetes Care, Inc. | Probability based controller gain |
| US10311976B2 (en) | 2016-04-28 | 2019-06-04 | Roche Diabetes Care, Inc. | Bolus calculator with probabilistic carbohydrate measurements |
| CA3023658C (en) | 2016-05-13 | 2023-03-07 | Icu Medical, Inc. | Infusion pump system and method with common line auto flush |
| US10332633B2 (en) | 2016-06-01 | 2019-06-25 | Roche Diabetes Care, Inc. | Control-to-range aggressiveness |
| US10297350B2 (en) | 2016-06-01 | 2019-05-21 | Roche Diabetes Care, Inc. | Risk-based control-to-range |
| US10332632B2 (en) | 2016-06-01 | 2019-06-25 | Roche Diabetes Care, Inc. | Control-to-range failsafes |
| WO2017214441A1 (en) | 2016-06-10 | 2017-12-14 | Icu Medical, Inc. | Acoustic flow sensor for continuous medication flow measurements and feedback control of infusion |
| CN106139318A (en)* | 2016-06-28 | 2016-11-23 | 成都市亿泰科技有限公司 | A kind of intelligent transfusion monitoring method based on integrated kalman filter |
| CA3030786A1 (en) | 2016-07-14 | 2018-01-18 | Icu Medical, Inc. | Multi-communication path selection and security system for a medical device |
| US10783801B1 (en) | 2016-12-21 | 2020-09-22 | Aptima, Inc. | Simulation based training system for measurement of team cognitive load to automatically customize simulation content |
| BR112019013985A2 (en) | 2017-01-06 | 2020-03-03 | Trustees Of Boston University | INFUSION SYSTEM AND COMPONENTS OF THE SAME |
| US9935395B1 (en) | 2017-01-23 | 2018-04-03 | Cadwell Laboratories, Inc. | Mass connection plate for electrical connectors |
| WO2018175489A1 (en) | 2017-03-21 | 2018-09-27 | Abbott Diabetes Care Inc. | Methods, devices and system for providing diabetic condition diagnosis and therapy |
| CN107203700B (en)* | 2017-07-14 | 2020-05-05 | 清华-伯克利深圳学院筹备办公室 | Method and device based on continuous blood glucose monitoring |
| US11331022B2 (en) | 2017-10-24 | 2022-05-17 | Dexcom, Inc. | Pre-connected analyte sensors |
| US20190120785A1 (en) | 2017-10-24 | 2019-04-25 | Dexcom, Inc. | Pre-connected analyte sensors |
| US10089055B1 (en) | 2017-12-27 | 2018-10-02 | Icu Medical, Inc. | Synchronized display of screen content on networked devices |
| CN108375381B (en)* | 2018-02-08 | 2021-12-21 | 北方工业大学 | Bionic polarization sensor multi-source error calibration method based on extended Kalman filtering |
| US11992339B2 (en) | 2018-05-04 | 2024-05-28 | Cadwell Laboratories, Inc. | Systems and methods for dynamic neurophysiological stimulation |
| US11253182B2 (en) | 2018-05-04 | 2022-02-22 | Cadwell Laboratories, Inc. | Apparatus and method for polyphasic multi-output constant-current and constant-voltage neurophysiological stimulation |
| US11443649B2 (en)* | 2018-06-29 | 2022-09-13 | Cadwell Laboratories, Inc. | Neurophysiological monitoring training simulator |
| US11483402B2 (en) | 2018-07-17 | 2022-10-25 | Icu Medical, Inc. | Maintaining clinical messaging during an internet outage |
| CA3106519A1 (en) | 2018-07-17 | 2020-01-23 | Icu Medical, Inc. | Systems and methods for facilitating clinical messaging in a network environment |
| US11139058B2 (en) | 2018-07-17 | 2021-10-05 | Icu Medical, Inc. | Reducing file transfer between cloud environment and infusion pumps |
| ES2985889T3 (en) | 2018-07-17 | 2024-11-07 | Icu Medical Inc | Updating infusion pump drug libraries and operational software in a networked environment |
| US10692595B2 (en) | 2018-07-26 | 2020-06-23 | Icu Medical, Inc. | Drug library dynamic version management |
| EP3827337A4 (en) | 2018-07-26 | 2022-04-13 | ICU Medical, Inc. | Drug library management system |
| CA3138528A1 (en) | 2019-05-08 | 2020-11-12 | Icu Medical, Inc. | Threshold signature based medical device management |
| EP4000075A4 (en) | 2019-07-16 | 2023-10-04 | Beta Bionics, Inc. | BLOOD GLUCOSE CONTROL SYSTEM |
| CA3146964A1 (en) | 2019-07-16 | 2021-01-21 | Beta Bionics, Inc. | Ambulatory device and components thereof |
| US11957876B2 (en) | 2019-07-16 | 2024-04-16 | Beta Bionics, Inc. | Glucose control system with automated backup therapy protocol generation |
| US11278671B2 (en) | 2019-12-04 | 2022-03-22 | Icu Medical, Inc. | Infusion pump with safety sequence keypad |
| USD1031975S1 (en) | 2020-03-10 | 2024-06-18 | Beta Bionics, Inc. | Medicament infusion pump device |
| US11278661B2 (en) | 2020-03-10 | 2022-03-22 | Beta Bionics, Inc. | Infusion system and components thereof |
| US11590057B2 (en) | 2020-04-03 | 2023-02-28 | Icu Medical, Inc. | Systems, methods, and components for transferring medical fluids |
| CA3189781A1 (en) | 2020-07-21 | 2022-01-27 | Icu Medical, Inc. | Fluid transfer devices and methods of use |
| EP4208798A4 (en) | 2020-09-05 | 2024-10-09 | ICU Medical, Inc. | Identity-based secure medical device communications |
| US11135360B1 (en) | 2020-12-07 | 2021-10-05 | Icu Medical, Inc. | Concurrent infusion with common line auto flush |
| US20220188388A1 (en) | 2020-12-07 | 2022-06-16 | Beta Bionics, Inc. | Ambulatory medicament pump with safe access control |
| CN113503879B (en)* | 2021-07-09 | 2023-02-07 | 北京航空航天大学 | A Dynamic Adaptive Kalman Filter Method Based on Ensemble Empirical Mode Decomposition |
| USD1091564S1 (en) | 2021-10-13 | 2025-09-02 | Icu Medical, Inc. | Display screen or portion thereof with graphical user interface for a medical device |
| CA3241894A1 (en) | 2021-12-10 | 2023-06-15 | Icu Medical, Inc. | Medical fluid compounding systems with coordinated flow control |
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US4655225A (en)* | 1985-04-18 | 1987-04-07 | Kurabo Industries Ltd. | Spectrophotometric method and apparatus for the non-invasive |
| US5070874A (en)* | 1990-01-30 | 1991-12-10 | Biocontrol Technology, Inc. | Non-invasive determination of glucose concentration in body of patients |
| US5086229A (en)* | 1989-01-19 | 1992-02-04 | Futrex, Inc. | Non-invasive measurement of blood glucose |
| US5218553A (en)* | 1989-08-23 | 1993-06-08 | The Perkin-Elmer Corporation | Method for determining concentrations by means of atomic emission spectroscopy |
| US5298022A (en)* | 1989-05-29 | 1994-03-29 | Amplifon Spa | Wearable artificial pancreas |
| US5308982A (en)* | 1991-10-04 | 1994-05-03 | Perkin-Elmer Corporation | Method and apparatus for comparing spectra |
| US5494032A (en)* | 1991-07-12 | 1996-02-27 | Sandia Corporation | Oximeter for reliable clinical determination of blood oxygen saturation in a fetus |
| US5497772A (en)* | 1993-11-19 | 1996-03-12 | Alfred E. Mann Foundation For Scientific Research | Glucose monitoring system |
| US5685299A (en)* | 1991-03-07 | 1997-11-11 | Masimo Corporation | Signal processing apparatus |
| US5792047A (en)* | 1997-01-15 | 1998-08-11 | Coggins; George | Physiological parameter monitoring and bio-feedback apparatus |
| US5822715A (en)* | 1997-01-10 | 1998-10-13 | Health Hero Network | Diabetes management system and method for controlling blood glucose |
| US5840020A (en)* | 1996-02-12 | 1998-11-24 | Nokia Mobile Phones, Ltd. | Monitoring method and a monitoring equipment |
| US5995860A (en)* | 1995-07-06 | 1999-11-30 | Thomas Jefferson University | Implantable sensor and system for measurement and control of blood constituent levels |
| US6023009A (en)* | 1996-02-23 | 2000-02-08 | Circe Biomedical, Inc. | Artificial pancreas |
| US6036642A (en)* | 1991-03-07 | 2000-03-14 | Masimo Corporation | Signal processing apparatus and method |
| US6061582A (en)* | 1994-02-14 | 2000-05-09 | University Of Iowa Research Foundation | Method and apparatus for non-invasive determination of physiological chemicals, particularly glucose |
| US6081735A (en)* | 1991-03-07 | 2000-06-27 | Masimo Corporation | Signal processing apparatus |
| US6083172A (en)* | 1995-08-07 | 2000-07-04 | Nellcor Puritan Bennett Incorporated | Method and apparatus for estimating physiological parameters using model-based adaptive filtering |
| US6152876A (en)* | 1997-04-18 | 2000-11-28 | Rio Grande Medical Technologies, Inc. | Method for non-invasive blood analyte measurement with improved optical interface |
| US6272480B1 (en)* | 1997-10-17 | 2001-08-07 | Siemens Aktiengesellschaft | Method and arrangement for the neural modelling of a dynamic system with non-linear stochastic behavior |
| US6368272B1 (en)* | 1998-04-10 | 2002-04-09 | Proactive Metabolics Company | Equipment and method for contemporaneous decision supporting metabolic control |
| US6413223B1 (en)* | 1999-06-01 | 2002-07-02 | Massachussetts Institute Of Technology | Cuffless continuous blood pressure monitor |
| US6544212B2 (en)* | 2001-07-31 | 2003-04-08 | Roche Diagnostics Corporation | Diabetes management system |
| US6558351B1 (en)* | 1999-06-03 | 2003-05-06 | Medtronic Minimed, Inc. | Closed loop system for controlling insulin infusion |
| US6572545B2 (en)* | 2000-09-22 | 2003-06-03 | Knobbe, Lim & Buckingham | Method and apparatus for real-time control of physiological parameters |
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US5387327A (en)* | 1992-10-19 | 1995-02-07 | Duquesne University Of The Holy Ghost | Implantable non-enzymatic electrochemical glucose sensor |
| US5687733A (en)* | 1995-10-26 | 1997-11-18 | Baxter International Inc. | System and method for estimating cardiac output |
| JP2001517991A (en) | 1997-03-21 | 2001-10-09 | ネルコー・ピューリタン・ベネット・インコーポレイテッド | Data signal adaptive averaging method and apparatus |
| US6216690B1 (en)* | 1997-10-15 | 2001-04-17 | Datex-Ohmeda, Inc. | Method and apparatus for rapid control of set inspired gas concentration in anesthesia delivery systems |
| US6175752B1 (en)* | 1998-04-30 | 2001-01-16 | Therasense, Inc. | Analyte monitoring device and methods of use |
| CA2343762A1 (en)* | 1998-09-10 | 2000-03-23 | Spectrx, Inc. | Attribute compensation for analyte detection and/or continuous monitoring |
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US4655225A (en)* | 1985-04-18 | 1987-04-07 | Kurabo Industries Ltd. | Spectrophotometric method and apparatus for the non-invasive |
| US5086229A (en)* | 1989-01-19 | 1992-02-04 | Futrex, Inc. | Non-invasive measurement of blood glucose |
| US5298022A (en)* | 1989-05-29 | 1994-03-29 | Amplifon Spa | Wearable artificial pancreas |
| US5218553A (en)* | 1989-08-23 | 1993-06-08 | The Perkin-Elmer Corporation | Method for determining concentrations by means of atomic emission spectroscopy |
| US5070874A (en)* | 1990-01-30 | 1991-12-10 | Biocontrol Technology, Inc. | Non-invasive determination of glucose concentration in body of patients |
| US6263222B1 (en)* | 1991-03-07 | 2001-07-17 | Masimo Corporation | Signal processing apparatus |
| US5685299A (en)* | 1991-03-07 | 1997-11-11 | Masimo Corporation | Signal processing apparatus |
| US6036642A (en)* | 1991-03-07 | 2000-03-14 | Masimo Corporation | Signal processing apparatus and method |
| US6236872B1 (en)* | 1991-03-07 | 2001-05-22 | Masimo Corporation | Signal processing apparatus |
| US6081735A (en)* | 1991-03-07 | 2000-06-27 | Masimo Corporation | Signal processing apparatus |
| US5494032A (en)* | 1991-07-12 | 1996-02-27 | Sandia Corporation | Oximeter for reliable clinical determination of blood oxygen saturation in a fetus |
| US5308982A (en)* | 1991-10-04 | 1994-05-03 | Perkin-Elmer Corporation | Method and apparatus for comparing spectra |
| US5497772A (en)* | 1993-11-19 | 1996-03-12 | Alfred E. Mann Foundation For Scientific Research | Glucose monitoring system |
| US6061582A (en)* | 1994-02-14 | 2000-05-09 | University Of Iowa Research Foundation | Method and apparatus for non-invasive determination of physiological chemicals, particularly glucose |
| US5995860A (en)* | 1995-07-06 | 1999-11-30 | Thomas Jefferson University | Implantable sensor and system for measurement and control of blood constituent levels |
| US6083172A (en)* | 1995-08-07 | 2000-07-04 | Nellcor Puritan Bennett Incorporated | Method and apparatus for estimating physiological parameters using model-based adaptive filtering |
| US5840020A (en)* | 1996-02-12 | 1998-11-24 | Nokia Mobile Phones, Ltd. | Monitoring method and a monitoring equipment |
| US6023009A (en)* | 1996-02-23 | 2000-02-08 | Circe Biomedical, Inc. | Artificial pancreas |
| US5822715A (en)* | 1997-01-10 | 1998-10-13 | Health Hero Network | Diabetes management system and method for controlling blood glucose |
| US5792047A (en)* | 1997-01-15 | 1998-08-11 | Coggins; George | Physiological parameter monitoring and bio-feedback apparatus |
| US6152876A (en)* | 1997-04-18 | 2000-11-28 | Rio Grande Medical Technologies, Inc. | Method for non-invasive blood analyte measurement with improved optical interface |
| US6272480B1 (en)* | 1997-10-17 | 2001-08-07 | Siemens Aktiengesellschaft | Method and arrangement for the neural modelling of a dynamic system with non-linear stochastic behavior |
| US6368272B1 (en)* | 1998-04-10 | 2002-04-09 | Proactive Metabolics Company | Equipment and method for contemporaneous decision supporting metabolic control |
| US6413223B1 (en)* | 1999-06-01 | 2002-07-02 | Massachussetts Institute Of Technology | Cuffless continuous blood pressure monitor |
| US6558351B1 (en)* | 1999-06-03 | 2003-05-06 | Medtronic Minimed, Inc. | Closed loop system for controlling insulin infusion |
| US6572545B2 (en)* | 2000-09-22 | 2003-06-03 | Knobbe, Lim & Buckingham | Method and apparatus for real-time control of physiological parameters |
| US6544212B2 (en)* | 2001-07-31 | 2003-04-08 | Roche Diagnostics Corporation | Diabetes management system |
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| WO2005081171A3 (en)* | 2004-02-19 | 2006-09-14 | Edward Henry Mathews | Insulin bolus calculator for mobile communication device |
| US8721584B2 (en)* | 2006-11-02 | 2014-05-13 | The University Of North Carolina At Chapel Hill | Methods and systems for determining an intravenous insulin infusion rate to correct hyperglycemia of a patient, to maintain euglycemia of a patient, and to prevent hypoglycemia of a patient |
| WO2008057384A3 (en)* | 2006-11-02 | 2008-09-04 | Univ North Carolina | Methods and systems for determining an intravenous insulin infusion rate |
| US20100137788A1 (en)* | 2006-11-02 | 2010-06-03 | Braithwaite Susan S | Methods and systems for determining an intravenous insulin infusion rate to correct hyperglycemia of a patient, to maintain euglycemia of a patient, and to prevent hypoglycemia of a patient |
| US20080214919A1 (en)* | 2006-12-26 | 2008-09-04 | Lifescan, Inc. | System and method for implementation of glycemic control protocols |
| US10856786B2 (en) | 2007-01-31 | 2020-12-08 | Medtronic Minimed, Inc. | Model predictive method and system for controlling and supervising insulin infusion |
| US11918349B2 (en) | 2007-01-31 | 2024-03-05 | Medtronic Minimed, Inc. | Model predictive control for diabetes management |
| US10154804B2 (en) | 2007-01-31 | 2018-12-18 | Medtronic Minimed, Inc. | Model predictive method and system for controlling and supervising insulin infusion |
| US20110282321A1 (en)* | 2007-01-31 | 2011-11-17 | Medtronic Minimed, Inc. | Model predictive method and system for controlling and supervising insulin infusion |
| US20240017008A1 (en)* | 2007-06-21 | 2024-01-18 | University Of Virginia Patent Foundation | Lqg artificial pancreas control system and related method |
| US11058818B2 (en) | 2007-06-21 | 2021-07-13 | University Of Virginia Patent Foundation | LQG artificial pancreas control system and related method |
| US20100249561A1 (en)* | 2007-06-21 | 2010-09-30 | University Of Virginia Patent Foundation | LQG Artificial Pancreas Control System and Related Method |
| US10173006B2 (en)* | 2007-06-21 | 2019-01-08 | University Of Virginia Patent Foundation | LQG artificial pancreas control system and related method |
| US20210299355A1 (en)* | 2007-06-21 | 2021-09-30 | University Of Virginia Patent Foundation | Lqg artificial pancreas control system and related method |
| US8449524B2 (en) | 2007-10-10 | 2013-05-28 | Optiscan Biomedical Corporation | Fluid component analysis systems and methods for glucose monitoring and control |
| US9414782B2 (en) | 2007-10-10 | 2016-08-16 | Optiscan Biomedical Corporation | Fluid component analysis systems and methods for glucose monitoring and control |
| US12296139B2 (en) | 2008-08-20 | 2025-05-13 | Insulet Corporation | Infusion pump systems and methods |
| US11865299B2 (en) | 2008-08-20 | 2024-01-09 | Insulet Corporation | Infusion pump systems and methods |
| US9302045B2 (en) | 2008-09-12 | 2016-04-05 | Optiscan Biomedical Corporation | Fluid component analysis system and method for glucose monitoring and control |
| US8417311B2 (en) | 2008-09-12 | 2013-04-09 | Optiscan Biomedical Corporation | Fluid component analysis system and method for glucose monitoring and control |
| US9317657B2 (en)* | 2008-11-26 | 2016-04-19 | University Of Virginia Patent Foundation | Method, system, and computer program product for tracking of blood glucose variability in diabetes |
| US20110264378A1 (en)* | 2008-11-26 | 2011-10-27 | University Of Virginia Patent Foundation | Method, System, and Computer Program Product For Tracking of Blood Glucose Variability in Diabetes |
| US20110238350A1 (en)* | 2010-03-29 | 2011-09-29 | Commissariat A L'energie Atomique Et Aux Energies Alternatives | Calibrating method and system, recording medium for this method |
| US8577635B2 (en)* | 2010-03-29 | 2013-11-05 | Commissariat A L'energie Atomique Et Aux Energies Alternatives | Calibrating method and system, recording medium for this method |
| US12123654B2 (en) | 2010-05-04 | 2024-10-22 | Fractal Heatsink Technologies LLC | System and method for maintaining efficiency of a fractal heat sink |
| US12064591B2 (en) | 2013-07-19 | 2024-08-20 | Insulet Corporation | Infusion pump system and method |
| US11386996B2 (en) | 2014-01-30 | 2022-07-12 | Insulet Netherlands B.V. | Therapeutic product delivery system and method of pairing |
| US20160147976A1 (en)* | 2014-11-26 | 2016-05-26 | RxAdvance Corporation | Medication Identification, Tracking And Adherence Management |
| US11596740B2 (en) | 2015-02-18 | 2023-03-07 | Insulet Corporation | Fluid delivery and infusion devices, and methods of use thereof |
| US11929158B2 (en) | 2016-01-13 | 2024-03-12 | Insulet Corporation | User interface for diabetes management system |
| US12303668B2 (en) | 2016-01-14 | 2025-05-20 | Insulet Corporation | Adjusting insulin delivery rates |
| US12303667B2 (en) | 2016-01-14 | 2025-05-20 | Insulet Corporation | Adjusting insulin delivery rates |
| US12106837B2 (en) | 2016-01-14 | 2024-10-01 | Insulet Corporation | Occlusion resolution in medication delivery devices, systems, and methods |
| US11857763B2 (en) | 2016-01-14 | 2024-01-02 | Insulet Corporation | Adjusting insulin delivery rates |
| WO2017136218A1 (en)* | 2016-02-01 | 2017-08-10 | Dexcom, Inc. | System and method for decision support using lifestyle factors |
| US10328204B2 (en) | 2016-05-02 | 2019-06-25 | Dexcom, Inc. | System and method for providing alerts optimized for a user |
| US11450421B2 (en) | 2016-05-02 | 2022-09-20 | Dexcom, Inc. | System and method for providing alerts optimized for a user |
| US12315614B2 (en) | 2016-05-02 | 2025-05-27 | Dexcom, Inc. | System and method for providing alerts optimized for a user |
| US10737025B2 (en) | 2016-05-02 | 2020-08-11 | Dexcom, Inc. | System and method for providing alerts optimized for a user |
| US10406287B2 (en) | 2016-05-02 | 2019-09-10 | Dexcom, Inc. | System and method for providing alerts optimized for a user |
| US11837348B2 (en) | 2016-05-02 | 2023-12-05 | Dexcom, Inc. | System and method for providing alerts optimized for a user |
| US10052073B2 (en) | 2016-05-02 | 2018-08-21 | Dexcom, Inc. | System and method for providing alerts optimized for a user |
| US9974903B1 (en) | 2016-05-02 | 2018-05-22 | Dexcom, Inc. | System and method for providing alerts optimized for a user |
| US12383166B2 (en) | 2016-05-23 | 2025-08-12 | Insulet Corporation | Insulin delivery system and methods with risk-based set points |
| US11724027B2 (en) | 2016-09-23 | 2023-08-15 | Insulet Corporation | Fluid delivery device with sensor |
| US12076160B2 (en) | 2016-12-12 | 2024-09-03 | Insulet Corporation | Alarms and alerts for medication delivery devices and systems |
| US11969579B2 (en) | 2017-01-13 | 2024-04-30 | Insulet Corporation | Insulin delivery methods, systems and devices |
| US12343502B2 (en) | 2017-01-13 | 2025-07-01 | Insulet Corporation | System and method for adjusting insulin delivery |
| US12042630B2 (en) | 2017-01-13 | 2024-07-23 | Insulet Corporation | System and method for adjusting insulin delivery |
| US12161841B2 (en) | 2017-01-13 | 2024-12-10 | Insulet Corporation | Insulin delivery methods, systems and devices |
| US12318577B2 (en) | 2017-01-13 | 2025-06-03 | Insulet Corporation | System and method for adjusting insulin delivery |
| US11878145B2 (en) | 2017-05-05 | 2024-01-23 | Ypsomed Ag | Closed loop control of physiological glucose |
| WO2019090016A1 (en)* | 2017-11-02 | 2019-05-09 | Boston Scientific Scimed, Inc. | Systems and methods for graded glucose control |
| US11304633B2 (en) | 2017-11-02 | 2022-04-19 | Boston Scientific Scimed, Inc. | System and method for providing glucose control therapy |
| US12380981B2 (en) | 2017-12-21 | 2025-08-05 | Ypsomed Ag | Closed loop control of physiological glucose |
| US11901060B2 (en) | 2017-12-21 | 2024-02-13 | Ypsomed Ag | Closed loop control of physiological glucose |
| US12171547B2 (en) | 2018-02-09 | 2024-12-24 | Dexcom, Inc. | System and method for providing personalized guidance to diabetes patients |
| US11723560B2 (en) | 2018-02-09 | 2023-08-15 | Dexcom, Inc. | System and method for decision support |
| US11766194B2 (en) | 2018-02-09 | 2023-09-26 | Dexcom, Inc. | System and method for decision support |
| USD1020794S1 (en) | 2018-04-02 | 2024-04-02 | Bigfoot Biomedical, Inc. | Medication delivery device with icons |
| US11565043B2 (en) | 2018-05-04 | 2023-01-31 | Insulet Corporation | Safety constraints for a control algorithm based drug delivery system |
| US12090301B2 (en) | 2018-05-04 | 2024-09-17 | Insulet Corporation | Safety constraints for a control algorithm based drug delivery system |
| US12020797B2 (en) | 2018-06-22 | 2024-06-25 | Ypsomed Ag | Insulin and pramlintide delivery systems, methods, and devices |
| US11628251B2 (en) | 2018-09-28 | 2023-04-18 | Insulet Corporation | Activity mode for artificial pancreas system |
| US11565039B2 (en) | 2018-10-11 | 2023-01-31 | Insulet Corporation | Event detection for drug delivery system |
| USD1024090S1 (en) | 2019-01-09 | 2024-04-23 | Bigfoot Biomedical, Inc. | Display screen or portion thereof with graphical user interface associated with insulin delivery |
| WO2021005552A1 (en)* | 2019-07-09 | 2021-01-14 | El Fathi Anas | Method and system for determining glucose change in a subject |
| US12251201B2 (en) | 2019-08-16 | 2025-03-18 | Poltorak Technologies Llc | Device and method for medical diagnostics |
| US11801344B2 (en) | 2019-09-13 | 2023-10-31 | Insulet Corporation | Blood glucose rate of change modulation of meal and correction insulin bolus quantity |
| US11935637B2 (en) | 2019-09-27 | 2024-03-19 | Insulet Corporation | Onboarding and total daily insulin adaptivity |
| US11957875B2 (en) | 2019-12-06 | 2024-04-16 | Insulet Corporation | Techniques and devices providing adaptivity and personalization in diabetes treatment |
| US11833329B2 (en) | 2019-12-20 | 2023-12-05 | Insulet Corporation | Techniques for improved automatic drug delivery performance using delivery tendencies from past delivery history and use patterns |
| US12036389B2 (en) | 2020-01-06 | 2024-07-16 | Insulet Corporation | Prediction of meal and/or exercise events based on persistent residuals |
| US12370307B2 (en) | 2020-02-03 | 2025-07-29 | Insulet Corporation | Use of fuzzy logic in predicting user behavior affecting blood glucose concentration in a closed loop control system of an automated insulin delivery device |
| US11551802B2 (en) | 2020-02-11 | 2023-01-10 | Insulet Corporation | Early meal detection and calorie intake detection |
| US11547800B2 (en) | 2020-02-12 | 2023-01-10 | Insulet Corporation | User parameter dependent cost function for personalized reduction of hypoglycemia and/or hyperglycemia in a closed loop artificial pancreas system |
| US11986630B2 (en) | 2020-02-12 | 2024-05-21 | Insulet Corporation | Dual hormone delivery system for reducing impending hypoglycemia and/or hyperglycemia risk |
| US11324889B2 (en) | 2020-02-14 | 2022-05-10 | Insulet Corporation | Compensation for missing readings from a glucose monitor in an automated insulin delivery system |
| US11607493B2 (en) | 2020-04-06 | 2023-03-21 | Insulet Corporation | Initial total daily insulin setting for user onboarding |
| US12121700B2 (en) | 2020-07-22 | 2024-10-22 | Insulet Corporation | Open-loop insulin delivery basal parameters based on insulin delivery records |
| US11684716B2 (en) | 2020-07-31 | 2023-06-27 | Insulet Corporation | Techniques to reduce risk of occlusions in drug delivery systems |
| US12115351B2 (en) | 2020-09-30 | 2024-10-15 | Insulet Corporation | Secure wireless communications between a glucose monitor and other devices |
| US12128215B2 (en) | 2020-09-30 | 2024-10-29 | Insulet Corporation | Drug delivery device with integrated optical-based glucose monitor |
| US12121701B2 (en) | 2021-01-29 | 2024-10-22 | Insulet Corporation | Systems and methods for incorporating co-formulations of insulin in an automatic insulin delivery system |
| US11904140B2 (en) | 2021-03-10 | 2024-02-20 | Insulet Corporation | Adaptable asymmetric medicament cost component in a control system for medicament delivery |
| US12370309B2 (en) | 2021-03-10 | 2025-07-29 | Insulet Corporation | Adaptive update of automatic insulin delivery (AID) control parameters |
| US12431229B2 (en) | 2021-03-10 | 2025-09-30 | Insulet Corporation | Medicament delivery device with an adjustable and piecewise analyte level cost component to address persistent positive analyte level excursions |
| US12406760B2 (en) | 2021-06-07 | 2025-09-02 | Insulet Corporation | Exercise safety prediction based on physiological conditions |
| US11738144B2 (en) | 2021-09-27 | 2023-08-29 | Insulet Corporation | Techniques enabling adaptation of parameters in aid systems by user input |
| US11439754B1 (en) | 2021-12-01 | 2022-09-13 | Insulet Corporation | Optimizing embedded formulations for drug delivery |
| US12097355B2 (en) | 2023-01-06 | 2024-09-24 | Insulet Corporation | Automatically or manually initiated meal bolus delivery with subsequent automatic safety constraint relaxation |
| Publication number | Publication date |
|---|---|
| AU2001291189A1 (en) | 2002-04-02 |
| WO2002024065A1 (en) | 2002-03-28 |
| US6575905B2 (en) | 2003-06-10 |
| US20020111547A1 (en) | 2002-08-15 |
| US20020099282A1 (en) | 2002-07-25 |
| US6572545B2 (en) | 2003-06-03 |
| Publication | Publication Date | Title |
|---|---|---|
| US6572545B2 (en) | Method and apparatus for real-time control of physiological parameters | |
| US20040034295A1 (en) | Method and apparatus for real-time estimation and control of physiological parameters | |
| US12171556B2 (en) | Method and devices for analyte monitoring calibration | |
| US11723562B2 (en) | Method, system and computer program product for CGM-based prevention of hypoglycemia via hypoglycemia risk assessment and smooth reduction insulin delivery | |
| US11189381B2 (en) | Moving-horizon state-initializer for control applications | |
| US10617363B2 (en) | Methods and systems for analyzing glucose data measured from a person having diabetes | |
| US8771251B2 (en) | Systems and methods for managing and delivering patient therapy through electronic drug delivery systems | |
| Knobbe et al. | The extended Kalman filter for continuous glucose monitoring | |
| US11484652B2 (en) | Closed-loop blood glucose control systems and methods | |
| Magni et al. | Run-to-run tuning of model predictive control for type 1 diabetes subjects: in silico trial | |
| JP7042808B2 (en) | An automated system to control a patient's blood glucose level | |
| US11433184B2 (en) | Automated system for regulating a patient's blood glucose level | |
| US20200015738A1 (en) | Automated system for controlling the blood glucose level of a patient | |
| US20210100486A1 (en) | System for predicting a patient's blood glucose level | |
| Florian Jr et al. | Empirical modeling for glucose control in critical care and diabetes | |
| EP3438986B1 (en) | Closed-loop blood glucose control systems and methods | |
| US12144965B2 (en) | Automated system for regulating the blood glucose level of a patient | |
| Avila et al. | Estimation of plasma insulin concentration under glycemic variability using nonlinear filtering techniques | |
| US12036391B2 (en) | Method for determining an uncertainty level of deep reinforcement learning network and device implementing such method | |
| US12005233B2 (en) | Automated system for monitoring a patient's blood sugar | |
| US20240188854A1 (en) | Method of determining a current glucose value in a transport fluid |
| Date | Code | Title | Description |
|---|---|---|---|
| STCB | Information on status: application discontinuation | Free format text:ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION |