LgBackLight.HidDevice.GetFeature C# (CSharp) Method

GetFeature() private method

private GetFeature ( byte reportBuffer ) : bool
reportBuffer byte
return bool
        internal bool GetFeature(byte[] reportBuffer)
        {
            return Hid.HidD_GetFeature(handle, reportBuffer, reportBuffer.Length);
        }

Usage Example

Beispiel #1
0
 private Color ReadBackLight(HidDevice device)
 {
     byte[] b = new byte[4];
     b[0] = KeyboardType.ReportID;
     device.GetFeature(b);
     return(Color.FromArgb(b[1], b[2], b[3]));
 }
All Usage Examples Of LgBackLight.HidDevice::GetFeature