ios - 终端的电池电量
<p><p>有没有办法在 iOS 设备插入计算机时从终端获取电池电量?我查看了 ioreg 并且只显示我的 macbook 的电池。 </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我能够在 macOS 10.14.2 中使用 Homebrew 的 <code>libimobiledevice</code> 公式获取此信息。您可能需要使用最新版本的库,因此 <code>--HEAD</code> 附加到安装命令:</p>
<pre><code>$ brew install --HEAD libimobiledevice
</code></pre>
<p>之后,尝试以下命令:</p>
<pre class="lang-none prettyprint-override"><code>$ 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
</code></pre>
<p>提供更多信息。尝试 <code>ideviceinfo --help</code> 列出您可以查询的其他域。</p></p>
<p style="font-size: 20px;">关于ios - 终端的电池电量,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/35297388/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/35297388/
</a>
</p>
页:
[1]