Esempio n. 1
0
 public Centrifuge()
 {
     TimerSemaphore = new Semaphore(0, 1);
     InitCoil       = new PLCParameter <bool>();
     Zero           = new PLCParameter <bool>();
     Angle          = new PLCParameter <float>();
     AngleFactor    = new PLCParameter <float>();
     CurrentSpeed   = new PLCParameter <int>();
     SpeedFactor    = new PLCParameter <float>();
     AngleStartCoil = new PLCParameter <bool>();
     DoneCoil       = new PLCParameter <bool>();
     LowAction      = new CentrifugeAction();
     HighAction     = new CentrifugeAction();
     EndAction      = new CentrifugeAction();
     Speed          = new PLCParameter <float>();
 }
Esempio n. 2
0
 private void LoadAction(CentrifugeAction action, float SpeedFactor)
 {
 }