Missed ini line from last commit.

This commit is contained in:
Josh Stewart 2023-05-17 08:21:25 +10:00
parent b49c6b6ab8
commit b0cf9e6cd2
1 changed files with 2 additions and 0 deletions

View File

@ -2077,6 +2077,7 @@ menuDialog = main
iacStepHome = "Homing steps to perform on startup. Must be greater than the fully open steps value"
iacMaxSteps = "Maximum number of steps the IAC can be moved away from the home position. Should always be less than Homing steps."
iacStepHyster = "The minimum number of steps to move in any one go."
iacStepperInv = "Invert the step pulse polarity"
iacStepperPower = "Power the stepper motor only when performing a step (Default) or constantly. If unsure, choose Only When Active."
iacAlgorithm = "Selects method of idle control.\nNone = no idle control valve.\nOn/Off valve.\nPWM valve (2,3 wire).\nStepper Valve (4,6,8 wire)."
iacPWMdir = "Normal PWM valves increase RPM with higher duty. If RPM decreases with higher duty then select Reverse"
@ -2738,6 +2739,7 @@ menuDialog = main
field = "Minimum Steps", iacStepHyster, { iacAlgorithm == 4 || iacAlgorithm == 5 || iacAlgorithm == 7 }
field = "Don't exceed", iacMaxSteps, { iacAlgorithm == 4 || iacAlgorithm == 5 || iacAlgorithm == 7 }
field = "Stepper Inverted", iacStepperInv, { iacAlgorithm == 4 || iacAlgorithm == 5 || iacAlgorithm == 7 }
field = "Stepper Power", iacStepperPower, { iacAlgorithm == 4 || iacAlgorithm == 5 || iacAlgorithm == 7 }
dialog = pwm_idle, "PWM Idle"
field = "Number of outputs", iacChannels, { iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6 }