菜鸟教程小白 发表于 2022-12-12 10:28:55

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
&lt;UDID&gt;

$ ideviceinfo -u &lt;UDID&gt; --simple
DeviceName: foo&#39;s phone
HardwareModel: D22AP
ProductName: iPhone OS
ProductType: iPhone10,3
ProductVersion: 12.0

$ ideviceinfo -u &lt;UDID&gt; --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]
查看完整版本: ios - 终端的电池电量