Email support
Practical WITMOTION IMU guides for UK projects

Cheap Motion Capture Sensor UK: Start with One IMU

Answer: One Bluetooth IMU can prove an orientation-driven control such as a head or wrist bone in a low-cost Unity motion-capture prototype. One IMU does not know absolute body position and cannot produce a full skeleton on its own. Treat it as a £50-class prototype input, not a cut-price replacement for a complete optical or inertial suit.

By WITMOTIONUpdated 20 July 2026

What one Bluetooth IMU can capture

An independent developer facing another week of hand-keying a head or hand animation can use one quaternion stream to test whether recorded orientation improves the scene. That is a sensible first milestone when a commercial suit is far outside the project budget. It is deliberately smaller than “build full-body mocap”.

The WT9011DCL publishes orientation-related channels over BLE according to WITMOTION's product information. A quaternion can rotate one Unity transform without the singularities associated with some Euler-angle sequences. It still describes orientation, not where that body part is in the room.

A minimum Unity prototype pipeline

  1. Subscribe to the BLE notification and preserve the device timestamp or arrival time.
  2. Parse the quaternion in the documented component order.
  3. Normalise it and map the sensor frame to Unity's coordinate convention.
  4. Capture a neutral pose and store its inverse as the calibration offset.
  5. Apply bounded smoothing; too much smoothing replaces jitter with visible lag.
  6. Record raw packets beside the animation so a bad take can be diagnosed later.

The official WITMOTION BLE repository is a starting point for packet access. It is not a ready-made Unity package, so budget time for a small bridge or native plugin.

Why full-body capture is a different project

Adding sensors introduces segment calibration, a skeletal model, wireless bandwidth and synchronisation. Position estimated from acceleration drifts rapidly because noise is integrated twice. Research systems often combine inertial orientation with vision or another spatial reference; a single sensor cannot reconstruct hip translation, foot contact and every joint.

A paper on human joint pose from inertial sensors illustrates the filtering and quaternion work needed even for robust joint orientation. If a demo needs only a sword hand, camera look or prop tilt, keep it single-point. If it needs production full-body animation, compare the evidence in the consumer IMU vs research-grade IMU guide before buying ten units.

Failure modes to test before recording a scene

  • Yaw changes when the performer moves near a steel desk or loudspeaker.
  • The neutral pose is not repeatable after the sensor is removed and refitted.
  • BLE packets arrive in bursts, causing animation stutter.
  • Axis mapping mirrors left and right or reverses a rotation.
  • The mount shifts during a fast movement.

Stop and fix the data path if any of these is visible. Do not hide an unstable capture behind stronger smoothing.

Buying boundary

The current protected WT9011DCL listing shows £51.80. Confirm the exact model, firmware, included cable, stock location and returns in writing before ordering.

Frequently asked questions

Can one IMU capture full-body motion?

No. One unit can provide one segment's orientation. Full-body capture needs multiple aligned sensors, a body model, synchronisation and usually an external position reference.

Can quaternion data drive a Unity bone?

Yes, after the component order, handedness, axis mapping and neutral-pose offset are verified. A direct assignment without those checks often produces mirrored or rotated motion.

How do I reduce drift in a low-cost mocap prototype?

Calibrate in the capture area, avoid magnetic disturbance, use sensor fusion, provide a recentre action and keep takes short enough to measure drift between reference poses.