2 Star 2 Fork 0

陈轩大魔王/battery_tray_number_show

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Battery_info.py 462 Bytes
一键复制 编辑 原始数据 按行查看 历史
陈轩大魔王 提交于 2019-07-02 16:31 . 现在能够获取电量了
from ctypes import *
class PowerClass(Structure):
_fields_ = [('ACLineStatus', c_byte),
('BatteryFlag', c_byte),
('BatteryLifePercent', c_byte),
('Reserved1',c_byte),
('BatteryLifeTime',c_ulong),
('BatteryFullLifeTime',c_ulong)]
def get_battery_level():
powerclass = PowerClass()
result = windll.kernel32.GetSystemPowerStatus( byref(powerclass) )
return powerclass.BatteryLifePercent
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/cxwithyxy/battery_tray_number_show.git
git@gitee.com:cxwithyxy/battery_tray_number_show.git
cxwithyxy
battery_tray_number_show
battery_tray_number_show
master

搜索帮助