终端电池电量

时间:2016-02-09 16:39:31

标签: ios

有没有办法在终端插入计算机时从终端获取iOS设备电池电量?我看过ioreg并且只显示我的macbook电池。

3 个答案:

答案 0 :(得分:2)

我能够使用Homebrew的libimobiledevice公式在macOS 10.14.2上获得此信息。您可能需要使用该库的最新版本,因此在安装命令后附加了--HEAD

$ brew install --HEAD libimobiledevice

之后,请尝试以下命令:

$ idevice_id --list
<UDID>

$ ideviceinfo -u <UDID> --simple
DeviceName: foo's phone
HardwareModel: D22AP
ProductName: iPhone OS
ProductType: iPhone10,3
ProductVersion: 12.0

$ ideviceinfo -u <UDID> --domain com.apple.mobile.battery
BatteryCurrentCapacity: 43
BatteryIsCharging: true
ExternalChargeCapable: true
ExternalConnected: true
FullyCharged: false
GasGaugeCapability: true
HasBattery: true

更多信息可用。尝试ideviceinfo --help列出您可以查询的其他域。

答案 1 :(得分:0)

答案 2 :(得分:0)

您可以使用命令&#34; cfgutil get batteryCurrentCapacity&#34;,您可以通过安装Apple Configurator的命令行工具来获取cfgutil。