Some fixes
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user