C# 클래스 Mirror.UsbLibrary.InputReport

Defines a base class for input reports. To use input reports, use the SetData method and override the ProcessData method.
상속: Report
파일 보기 프로젝트 열기: suan/mirlite 1 사용 예제들

공개 메소드들

메소드 설명
ProcessData ( ) : void

Override this to process the input report into something useful

SetData ( byte arrData ) : void

Call this to set the buffer given a raw input report. Calls an overridable method to should automatically parse the bytes into meaningul structures.

보호된 메소드들

메소드 설명
InputReport ( HIDDevice oDev )

Construction. Do nothing

메소드 상세

InputReport() 보호된 메소드

Construction. Do nothing
protected InputReport ( HIDDevice oDev )
oDev HIDDevice Creating device

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

Override this to process the input report into something useful
public abstract ProcessData ( ) : void
리턴 void

SetData() 공개 메소드

Call this to set the buffer given a raw input report. Calls an overridable method to should automatically parse the bytes into meaningul structures.
public SetData ( byte arrData ) : void
arrData byte Raw input report.
리턴 void