Created
September 17, 2017 06:18
-
-
Save wangqr/e8cf4f4eeed891858a029eaabb0f666a to your computer and use it in GitHub Desktop.
Python script to get battery status on Windows
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
import ctypes | |
from ctypes import wintypes | |
class SYSTEM_POWER_STATUS(ctypes.Structure): | |
_fields_ = [ | |
('ACLineStatus', wintypes.BYTE), | |
('BatteryFlag', wintypes.BYTE), | |
('BatteryLifePercent', wintypes.BYTE), | |
('Reserved1', wintypes.BYTE), | |
('BatteryLifeTime', wintypes.DWORD), | |
('BatteryFullLifeTime', wintypes.DWORD), | |
] | |
SYSTEM_POWER_STATUS_P = ctypes.POINTER(SYSTEM_POWER_STATUS) | |
GetSystemPowerStatus = ctypes.windll.kernel32.GetSystemPowerStatus | |
GetSystemPowerStatus.argtypes = [SYSTEM_POWER_STATUS_P] | |
GetSystemPowerStatus.restype = wintypes.BOOL | |
status = SYSTEM_POWER_STATUS() | |
if not GetSystemPowerStatus(ctypes.pointer(status)): | |
raise ctypes.WinError() | |
print('ACLineStatus', status.ACLineStatus) | |
print('BatteryFlag', status.BatteryFlag) | |
print('BatteryLifePercent', status.BatteryLifePercent) | |
print('BatteryLifeTime', status.BatteryLifeTime) | |
print('BatteryFullLifeTime', status.BatteryFullLifeTime) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment