Windows error 0xC0262582, -1071241854

Detailed Error Information

ERROR_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA[1]

MessageAn error occurred while transmitting data to the device on the I2C bus.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)true
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode38 (0x026)
NameFACILITY_GRAPHICS[2][1]
DescriptionThe source of the error code is the graphics drivers.[2][1]
Error Code9602 (0x2582)

Questions

2votes
0answers

Adjust brightness the native way in Windows

I was wondering what is the native way to adjust the brightness in Windows? By native, I mean the method that also displays the brightness overlay in the top left corner in Windows 8, 8.1, and 10, as if the special brightness keys have been pressed. I was looking all [...] read more
c#
c++
windows
winapi
brightness
0votes
1answer

Winapi c++ trying to get primary monitor's brightness

I tried to get the brightness of the primary monitor using the following code: POINT monitorPoint = { 0, 0 }; HANDLE monitor = MonitorFromPoint(monitorPoint, MONITOR_DEFAULTTOPRIMARY); DWORD minb, maxb, currb; if (GetMonitorBrightness(monitor, &minb, &currb, &maxb) == FALSE) { std::cout << GetLastError() << std::endl; } But it fails and GetLastError() returns [...] read more
c++
winapi

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0