i want to know is there any way to know by c# code that laptop’s battery is fully charged or is there any event raised when the battery is full.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’m guessing you could use the WMI class Win32_Battery.
There are multiple fields that could be useful –
DesignCapacity,BatteryStatus,FullChargeCapacityorExpectedLifeSo my guess is that you can use WMI to read these two values, and then calculate
FullChargeCapacity/BatteryStatus/DesignCapacity/ExpectedLifeto find the battery health percentage number.