获取电池温度和结果单位

发布于 2024-12-09 05:29:02 字数 374 浏览 3 评论 0原文

我正在阅读如何获取电池的温度,我制作了一个小应用程序,在我的接收器中,我有类似这样的东西

int temp = intent.getIntExtra("temperature", 0);

,这个温度有像 390 或 380 这样的值,对于摄氏度来说确实很大,但我认为即使对于华氏度来说这也是一个很大的数字......

有人可以告诉我单位是什么吗,做到了有一个范围等等。

在官方文档中我发现的只是“包含当前电池温度的整数”

谢谢

I was reading how to get the temperature of the battery and I make small app, and in my receiver I have something like this

int temp = intent.getIntExtra("temperature", 0);

well , this temp have values like 390 or 380 something that is really big to be Celsius but I think that is big number even for Fahrenheit...

can someone please tall what is the unit, does it have a range and so on.

in the official documentation all I found was "integer containing the current battery temperature"

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

街道布景 2024-12-16 05:29:02

温度在零点摄氏度。还在问题此处进行了讨论< /a>.

The temperature is in tenths of a degree centigrade. Also discussed in question here.

不念旧人 2024-12-16 05:29:02

结果是您从意图获得的值的 1/10,这意味着如果您获得 380,则为 38 度。

the result is 1/10 of the value you get from the intent it means if you get 380 it is 38 degrees.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文