Просмотр исходного кода

Update UnitsLimitsSettingsRootView.swift

Max Basal: Adds warning in the Verbose Hint for Medtronic pump users to manually set the max basal rate on the pump.
Max COB: Adds an example to the Verbose Hint.
tmhastings 1 год назад
Родитель
Сommit
3dcd4c649b

+ 3 - 1
FreeAPS/Sources/Modules/GeneralSettings/View/UnitsLimitsSettingsRootView.swift

@@ -108,6 +108,7 @@ extension UnitsLimitsSettings {
                         Text(
                             "This is the maximum basal rate allowed to be set or scheduled. This applies to both automatic and manual basal rates."
                         )
+                        Text("Note to Medtronic Pump Users: You must also manually set the max basal rate on the pump to this value or higher.")
                     }
                 )
 
@@ -128,10 +129,11 @@ extension UnitsLimitsSettings {
                     miniHint: "Maximum Carbs On Board (COB) allowed.",
                     verboseHint:
                     VStack(alignment: .leading, spacing: 10) {
-                        Text("Default: 120 carbs").bold()
+                        Text("Default: 120 grams of carbs").bold()
                         Text(
                             "This setting defines the maximum amount of Carbs On Board (COB) at any given time for Trio to use in dosing calculations. If more carbs are entered than allowed by this limit, Trio will cap the current COB in calculations to Max COB and remain at max until all remaining carbs have shown to be absorbed."
                         )
+                        Text("For example, if Max COB is 120g and you enter a meal containing 150g of carbs, your COB will remain at 120g until the remaining 30g have been absorbed.")
                         Text("This is an important limit when UAM is ON.")
                     }
                 )