智能手机中的压力传感器
任何人都可以帮助我了解智能手机中的压力传感器。我猜测 TYPE_PRESSURE 用于查询大气压力。目前尚不清楚这些值存储在哪里。它是否存储在 SensorManager.values 字段中? 该传感器的其他可能用途是什么?
Could anyone help me understand the pressure sensors in smart phones.I am guessing the TYPE_PRESSURE is used to query the atmospheric pressure. It is not clear where the values are stored. Is it stored in the SensorManager.values field?
What could be the other possible uses of this sensor?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它的主要用途是告诉海拔变化,但我确信有一些智能方法可以使用该传感器来执行多项其他任务。
至于获取变量,我很确定它的工作原理与其他 Android 传感器一样。您注册一个传感器事件侦听器,然后在更改的传感器中从 event.values.clone() 获取值,例如。
Its main uses would be to tell elevation changes, however i am sure that there are some intelligent ways to use this sensor to do multiple other tasks.
As for getting the variables out I am pretty sure it works as the other android sensors do. You register a sensor event listener and then in your on sensor changed you get the values out of event.values.clone() eg.
压力传感器给出环境气压,单位为 hPa 或 mbar。它的值存储在 event.values[0] 中。在 Android 开发中心查看有关环境传感器的参考资料。
这里有一个如何使用它的示例:
The pressure sensor gives the ambient air pressure in hPa or mbar. Its values are stored in the event.values[0]. Check the reference about environment sensors in de Android Dev Centre.
Here you have an example of how to use it: