IR Raw Data event

Namespace:  Phidgets
Assembly:  Phidget21.NET (in Phidget21.NET.dll) Version: 2.1.9.34

Syntax

C#
public event IRRawDataEventHandler RawData
Visual Basic (Declaration)
Public Event RawData As IRRawDataEventHandler
Visual C++
public:
 event IRRawDataEventHandler^ RawData {
	void add (IRRawDataEventHandler^ value);
	void remove (IRRawDataEventHandler^ value);
}

Remarks

This event is called whenever new IR data is available. Data is in the form of an array of microsecond pulse values. This can be used if the user wishes to do their own data decoding, or for codes that the PhidgetIR cannot automatically recognize.

See Also