C# Class GHIElectronics.UAP.Gadgeteer.SocketInterfaces.DigitalIO

Exibir arquivo Open project: amykatenicho/IoTWorkshop Class Usage Examples

Public Methods

Method Description
IsHigh ( ) : bool
IsLow ( ) : bool
Read ( ) : bool
SetHigh ( ) : void
SetLow ( ) : void
Write ( bool value ) : void

Protected Methods

Method Description
DisableInterrupt ( ) : void
EnableInterrupt ( ) : void
OnValueChanged ( bool e ) : void
ReadInternal ( ) : bool
WriteInternal ( bool value ) : void

Method Details

DisableInterrupt() protected abstract method

protected abstract DisableInterrupt ( ) : void
return void

EnableInterrupt() protected abstract method

protected abstract EnableInterrupt ( ) : void
return void

IsHigh() public method

public IsHigh ( ) : bool
return bool

IsLow() public method

public IsLow ( ) : bool
return bool

OnValueChanged() protected method

protected OnValueChanged ( bool e ) : void
e bool
return void

Read() public method

public Read ( ) : bool
return bool

ReadInternal() protected abstract method

protected abstract ReadInternal ( ) : bool
return bool

SetHigh() public method

public SetHigh ( ) : void
return void

SetLow() public method

public SetLow ( ) : void
return void

Write() public method

public Write ( bool value ) : void
value bool
return void

WriteInternal() protected abstract method

protected abstract WriteInternal ( bool value ) : void
value bool
return void