C# 클래스 CyrusBuilt.MonoPi.Components.Button.ButtonComponent

A component that is an abstraction of a button. This is an implementation of CyrusBuilt.MonoPi.Components.Button.ButtonBase.
상속: ButtonBase
파일 보기 프로젝트 열기: cyrusbuilt/MonoPi

공개 메소드들

메소드 설명
ButtonComponent ( IGpio pin ) : System

Initializes a new instance of the CyrusBuilt.MonoPi.Components.Button.ButtonComponent class with the pin the button is wired to.

Dispose ( ) : void

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

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

InterruptPoll ( ) : void

Interrupts the poll cycle.

Poll ( ) : void

Polls the input pin status.

ToString ( ) : String

Returns a System.String that represents the current CyrusBuilt.MonoPi.Components.Button.ButtonComponent.

비공개 메소드들

메소드 설명
BackgroundExecutePoll ( ) : void

Executes the poll cycle on a background thread.

ExecutePoll ( ) : void

Executes the poll cycle. Does not return until CyrusBuilt.MonoPi.Components.Button.ButtonComponent.InterruptPoll is called.

OnPinStateChanged ( Object sender, PinStateChangeEventArgs e ) : void

Raises the pin state changed event.

메소드 상세

ButtonComponent() 공개 메소드

Initializes a new instance of the CyrusBuilt.MonoPi.Components.Button.ButtonComponent class with the pin the button is wired to.
public ButtonComponent ( IGpio pin ) : System
pin IGpio /// The input pin the button is wired to. ///
리턴 System

Dispose() 공개 메소드

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
Call Dispose when you are finished using the CyrusBuilt.MonoPi.Components.Button.ButtonComponent. The Dispose method leaves the CyrusBuilt.MonoPi.Components.Button.ButtonComponent in an unusable state. After calling Dispose, you must release all references to the CyrusBuilt.MonoPi.Components.Button.ButtonComponent so the garbage collector can reclaim the memory that the CyrusBuilt.MonoPi.Components.Button.ButtonComponent was occupying.
public Dispose ( ) : void
리턴 void

InterruptPoll() 공개 메소드

Interrupts the poll cycle.
public InterruptPoll ( ) : void
리턴 void

Poll() 공개 메소드

Polls the input pin status.
/// This instance has been disposed. /// /// The specified pin is configured for output instead of input. ///
public Poll ( ) : void
리턴 void

ToString() 공개 메소드

Returns a System.String that represents the current CyrusBuilt.MonoPi.Components.Button.ButtonComponent.
public ToString ( ) : String
리턴 String