adb 模拟电池温度
时间: 2023-11-28 18:43:50 浏览: 164
模拟温度测量
以下是两种adb模拟电池温度的方法:
1. 查看当前电池温度
```shell
adb shell cat /sys/devices/platform/battery/Battery_Temperature
```
2. 设置电池温度为55度
```shell
adb shell "echo 55 > /sys/devices/platform/battery/Battery_Temperature"
```
阅读全文