Click here to Skip to main content
15,891,431 members
Please Sign up or sign in to vote.
1.33/5 (3 votes)
See more:
Hi I'm an electronic engineering student. I'm doing a project that head movement control mouse. I wrote a program to control mouse pointer from head. Now i want to disable this program when moving an optical mouse and If user will not move optical mouse in 1 min, I want to enable program of head movement control mouse again. Please help me
Posted

1 solution

Install a low level mouse windows hook.
Watch for mouse messages. Reset a timer for each message observed.
If timer goes off, you have not seen mouse message in that time.
See SetWindowsHookEx function using WH_MOUSE_LL
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900