-
-
Save lesthack/5a816a68b1d3e534723b9e2e8f0f73c8 to your computer and use it in GitHub Desktop.
Python script to get battery status on Windows
This file contains 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