You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
React Native SDK for connecting to WitMotion BLE IMU sensors (e.g. WT901, WT901BLECL) using react-native-ble-plx.
Implements the official WIT Standard Protocol in TypeScript/JavaScript.
✨ Features
🔎 Scan for nearby WitMotion BLE devices
🔗 Connect and subscribe to sensor notifications
📡 Parse WIT Standard packets (0x5x, 0x61, 0x71)
📊 Provides accelerometer, gyroscope, angle, magnetometer, quaternion, temperature
import{WitCmd}from"witmotion-react-native";// Reset yaw angleawaitsend?.(WitCmd.resetYaw);// Start magnetometer calibrationawaitsend?.(WitCmd.startMagCalib);// Save settingsawaitsend?.(WitCmd.save);// Set output rate to 50 Hzawaitsend?.(WitCmd.setRateHz(50));