python移动端内存、电量监控脚本,自动输出到本地txt
第一次写博客,大家凑合看看吧。
adb命令查电量 adb shell dumpsys battery
AC powered: false
USB powered: true
Wireless powered: false
status: 1 #电池状态:2:充电状态 ,其他数字为非充电状态
health: 2 #电池健康状态:只有数字2表示good
present: true #电池是否安装在机身
level: 55 #电量: 百分比
scale: 100
voltage: 3977 #电池电压
current now: -335232 #电流值,负数表示正在充电
temperature: 335 #电池温度,单位是0.1摄氏度
technology: Li-poly #电池种类=
电量监控脚本
使用adb命令查询电量信息,使用split分隔,取出需要的信息,添加到txt文档
// An highlighted block
import os,time
from time import sleep
now = time.strftime("%Y-%m-%d_%H_%M_%S", time.localtime()) # 获取当前时间
while(1):
now2 = time.strftime("%Y-%m-%d_%H_%M_%S", time.localtime()) # 获取当前时间
a = os.popen('adb shell dumpsys battery') #adb命令查询电量
b = a.buffer.read().decode(encoding='utf8')
dianliang = (b.split('level: ')[1]).split(' scale:')[0] #分隔返回的信息,取出电量
e = int