Microsoft.SPOT.Hardware.InterruptPort.ClearInterrupt C# (CSharp) Method

ClearInterrupt() public method

public ClearInterrupt ( ) : void
return void
        public void ClearInterrupt()
        {
        }

Usage Example

Example #1
0
 /// <summary>
 ///     Clear the interrupt flag.
 ///     Se Command Register on page 13 of the datasheet.
 /// </summary>
 /// <remarks>
 ///     According to the datasheet, writing a 1 into bit 6 of the command
 ///     register will clear any pending interrupts.
 /// </remarks>
 public void ClearInterrupt()
 {
     _tsl2561.WriteByte(ClearInterruptBit);
     if (_interruptPin != null)
     {
         _interruptPin.ClearInterrupt();
     }
 }
All Usage Examples Of Microsoft.SPOT.Hardware.InterruptPort::ClearInterrupt