Beispiel #1
0
 public void Regulate()
 {
     if (CurrentCharge > _thresholdLow && CurrentCharge <= _thresholdHigh)
     {
         _charge.StartCharge();
     }
     else
     {
         _charge.StopCharge();
     }
 }