GlucoseConversion.swift 292 B

123456789101112131415
  1. //
  2. // GlucoseConversion.swift
  3. // LoopFollow
  4. //
  5. // Created by Jonas Björkert on 2024-04-28.
  6. // Copyright © 2024 Jon Fawcett. All rights reserved.
  7. //
  8. import Foundation
  9. struct GlucoseConversion {
  10. static let mgDlToMmolL: Double = 0.0555
  11. static let mmolToMgDl: Double = 18.01559
  12. }