Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Check to see if a Windows Mobile Device is Idle

I have a windows mobile 5 program (compact framework 3.5) that I need to be able to detect when the device is idle.

Right now I am just checking to see if the backlight is off. Like this:

[DllImport("coredll.dll", EntryPoint = "sleep", SetLastError = true)]
internal static extern void sleep(int dwMilliseconds);

....

//Get the current power state of the system
int winError = CoreDLL.GetSystemPowerState(systemStateName, out systemPowerStates);
if (winError == 0)
{
    //If the backlight is off, consider the state to be idle.
    if (systemStateName.ToString() == "backlightoff")
    {
        idle = true;
    }
}

I think this may be getting close, but I would like to know if the device is truly not being used.

like image 213
Vaccano Avatar asked Dec 01 '25 04:12

Vaccano


1 Answers

You're using the right function, simply check for the states (which are bitwise flags):

if ((systemPowerStates & POWER_STATE_IDLE) == POWER_STATE_IDLE) {
  idle = true;
}

with POWER_STATE_IDLE = 0x00100000.

Edit: to answer your comment, look at the RequestPowerNotification function. You'll receive POWER_BROADCAST message when the power state changes.

like image 147
Julien Lebosquain Avatar answered Dec 02 '25 16:12

Julien Lebosquain