C# 클래스 CyrusBuilt.MonoPi.IO.GpioBase

Abstract base class for the GPIO connector on the Pi (P1) (as found next to the yellow RCA video socket on the Rpi circuit board).
상속: IRaspiGpio
파일 보기 프로젝트 열기: cyrusbuilt/MonoPi 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
_initValue PinState
_mode PinMode

공개 메소드들

메소드 설명
ChangeBoardRevision ( BoardRevision revision ) : void

Changes the board revision.

Dispose ( ) : void

Releases all resource used by the CyrusBuilt.MonoPi.IO.GpioBase object.

Call Dispose when you are finished using the CyrusBuilt.MonoPi.IO.GpioBase.The Dispose method leaves the CyrusBuilt.MonoPi.IO.GpioBase in an unusable state. After calling Dispose, you must release all references to the CyrusBuilt.MonoPi.IO.GpioBase so the garbage collector can reclaim the memory that the CyrusBuilt.MonoPi.IO.GpioBase was occupying.

Provision ( ) : void

Provisions the pin (initialize to specified mode and make active).

Pulse ( Int32 millis ) : void

Pulse the pin output for the specified number of milliseconds.

Read ( ) : PinState

Read a value from the pin.

Write ( PinState value ) : void

Write the specified value to the pin.

보호된 메소드들

메소드 설명
GetGpioPinNumber ( GpioPins pin ) : String

Gets the GPIO pin number.

GpioBase ( GpioPins pin ) : System

Initializes a new instance of the CyrusBuilt.MonoPi.IO.GpioBase class with a board Revision 1.0 pin.

GpioBase ( GpioPins pin, PinMode mode ) : System

Initializes a new instance of the CyrusBuilt.MonoPi.IO.GpioBase class with a board Revision 1.0 pin and the pin direction.

GpioBase ( GpioPins pin, PinMode mode, PinState value ) : System

Initializes a new instance of the CyrusBuilt.MonoPi.IO.GpioBase class with a board Revision 1.0 GPIO pin, the pin mode, and the initial pin value.

OnStateChanged ( PinStateChangeEventArgs e ) : void

Raises the state changed event.

메소드 상세

ChangeBoardRevision() 공개 메소드

Changes the board revision.
public ChangeBoardRevision ( BoardRevision revision ) : void
revision BoardRevision /// The board revision. Default is . ///
리턴 void

Dispose() 공개 메소드

Releases all resource used by the CyrusBuilt.MonoPi.IO.GpioBase object.
Call Dispose when you are finished using the CyrusBuilt.MonoPi.IO.GpioBase.The Dispose method leaves the CyrusBuilt.MonoPi.IO.GpioBase in an unusable state. After calling Dispose, you must release all references to the CyrusBuilt.MonoPi.IO.GpioBase so the garbage collector can reclaim the memory that the CyrusBuilt.MonoPi.IO.GpioBase was occupying.
public Dispose ( ) : void
리턴 void

GetGpioPinNumber() 보호된 정적인 메소드

Gets the GPIO pin number.
protected static GetGpioPinNumber ( GpioPins pin ) : String
pin GpioPins /// The GPIO pin. ///
리턴 String

GpioBase() 보호된 메소드

Initializes a new instance of the CyrusBuilt.MonoPi.IO.GpioBase class with a board Revision 1.0 pin.
protected GpioBase ( GpioPins pin ) : System
pin GpioPins /// The GPIO pin. ///
리턴 System

GpioBase() 보호된 메소드

Initializes a new instance of the CyrusBuilt.MonoPi.IO.GpioBase class with a board Revision 1.0 pin and the pin direction.
protected GpioBase ( GpioPins pin, PinMode mode ) : System
pin GpioPins /// The GPIO pin. ///
mode PinMode /// The I/O pin mode. ///
리턴 System

GpioBase() 보호된 메소드

Initializes a new instance of the CyrusBuilt.MonoPi.IO.GpioBase class with a board Revision 1.0 GPIO pin, the pin mode, and the initial pin value.
protected GpioBase ( GpioPins pin, PinMode mode, PinState value ) : System
pin GpioPins /// The GPIO pin. ///
mode PinMode /// The I/O pin mode. ///
value PinState /// The initial pin value. ///
리턴 System

OnStateChanged() 보호된 메소드

Raises the state changed event.
protected OnStateChanged ( PinStateChangeEventArgs e ) : void
e PinStateChangeEventArgs /// The event arguments. ///
리턴 void

Provision() 공개 추상적인 메소드

Provisions the pin (initialize to specified mode and make active).
public abstract Provision ( ) : void
리턴 void

Pulse() 공개 메소드

Pulse the pin output for the specified number of milliseconds.
public Pulse ( Int32 millis ) : void
millis System.Int32 /// The number of milliseconds to wait between states. ///
리턴 void

Read() 공개 추상적인 메소드

Read a value from the pin.
public abstract Read ( ) : PinState
리턴 PinState

Write() 공개 메소드

Write the specified value to the pin.
public Write ( PinState value ) : void
value PinState /// If set to true value. ///
리턴 void

프로퍼티 상세

_initValue 보호되어 있는 프로퍼티

protected PinState _initValue
리턴 PinState

_mode 보호되어 있는 프로퍼티

protected PinMode _mode
리턴 PinMode