Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Sensor calibration toolkit with magnetometer calibration using close-form method. Use when calibrating IMU sensors (accelerometer, gyroscope, magnetometer) t...
Sensor calibration toolkit with magnetometer calibration using close-form method. Use when calibrating IMU sensors (accelerometer, gyroscope, magnetometer) t...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
pywayne.calibration.MagnetometerCalibrator provides magnetometer calibration using sensor data (accelerometer, gyroscope, magnetometer).
from pywayne.calibration import MagnetometerCalibrator import numpy as np # Sensor data: ts (N,), acc (N,3), gyro (N,3), mag (N,3) calibrator = MagnetometerCalibrator(method='close_form') Sm, h = calibrator.process(ts, acc, gyro, mag) # Sm: Soft-iron matrix (3x3) # h: Hard-iron offset vector (3,)
Sensor data must be numpy arrays with matching sample counts: ts # (N,) - Timestamps (seconds) acc # (N, 3) - Accelerometer [ax, ay, az] gyro # (N, 3) - Gyroscope [gx, gy, gz] mag # (N, 3) - Magnetometer [mx, my, mz] Data requirements: Sensor data should cover various orientations for effective calibration Minimum data points required (exact number depends on calibration stability) Arrays must be C-contiguous (auto-converted internally)
process() returns: ParameterShapeDescriptionSm(3, 3)Soft-iron matrixh(3,)Hard-iron offset vector
Apply calibration to raw magnetometer readings: # Calibrated reading m_calibrated = Sm @ (m_raw - h)
Temporal calibration module exists but is reserved for future expansion. Currently no functionality is implemented.
Dependencies: Requires vqf (VQF quaternion filter) and qmt (quaternion math) modules Method: Currently only supports close_form method Orientation: Uses VQF for sensor fusion and orientation estimation during calibration Output: Prints calibration parameters during processing
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.