C# 클래스 LitDev.Engines.InputReport

상속: Report
파일 보기 프로젝트 열기: litdev1/LitDev 1 사용 예제들

공개 메소드들

메소드 설명
InputReport ( HIDDevice oDev ) : System

Construction. Do nothing

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() 공개 메소드

Construction. Do nothing
public InputReport ( HIDDevice oDev ) : System
oDev HIDDevice Creating device
리턴 System

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