Beispiel #1
0
 /// <summary>
 /// Tells the physical layer to flash the led
 /// Sets the ledhigh varaible to true because the led always
 /// Stops flashing in the high state
 /// </summary>
 public void flashLED_LL()
 {
     log.Debug("Flash LED");
     if (_deviceConnected)
     {
         _physicalLayer.flashLED_PL();
         _ledHigh = true;
     }
     else
     {
         log.Debug("Device is not connected, can not flash");
     }
 }