Some fixes

This commit is contained in:
2026-07-09 09:27:28 +02:00
parent fdb7976dda
commit 68cbcef053
3 changed files with 25 additions and 24 deletions
+4 -4
View File
@@ -41,8 +41,8 @@ namespace PamhagenSysCtrl.Helpers {
public double GradationOe => Sensors.GradationOe;
public MotorState PresseQuerSchnecke => Sensors.PresseQuerSchnecke;
public bool WantA1Selected => Actuators.TroughSelector;
public bool WantA2Selected => !Actuators.TroughSelector;
public bool WantA1Selected => Actuators.GetV(58);
public bool WantA2Selected => !Actuators.GetV(58);
public bool IsTroughAugerActive => Actuators.TroughAuger;
public bool IsReblerActive => Actuators.Rebler;
@@ -159,12 +159,12 @@ namespace PamhagenSysCtrl.Helpers {
}
public void SelectA1() {
Actuators.TroughSelector = true;
Actuators.SetV(58, true);
//if (IsReblerActive) Actuators.StirrerA1 = true;
}
public void SelectA2() {
Actuators.TroughSelector = false;
Actuators.SetV(58, false);
//if (IsReblerActive) Actuators.StirrerA2 = true;
}