我正在寻找一种检测用户何时摇动设备以触发我的本机应用程序中的功能的方法。我可能会用到的本机传感器中有一个“加速器”传感器。有没有人有建造这样的东西的经验?任何指导将不胜感激。
https://react-native-sensors.github.io/docs/API.html
import { accelerometer } from "react-native-sensors";
const subscription = accelerometer.subscribe(({ x, y, z, timestamp }) =>
console.log({ x, y, z, timestamp })
);