Chapters

31 Production Sensor Fusion and Validation

sensors
sensor
types
production

Back to Kalman Filtering

31.1 Start With the Measurement Story

Let Independent Sensors Disagree

Picture a delivery robot entering a bright loading bay. Its camera says the way is clear, while its distance sensor reports an object ahead. A system that always prefers one reading may turn a useful warning into a confident mistake.

Start with the decision and the conditions that can fool each sensor. Record what each part measures, its unit, update time, useful range, and known weak cases. Keep the original readings beside any combined result so a reviewer can see whether agreement was real or forced.

Test a normal scene, then cover one sensor, delay another, add glare, and move the target quickly. The system should mark uncertainty, reject an impossible jump, or choose a safe action. It should not hide disagreement behind one smooth number.

More sensors do not always mean a better answer. Shared placement, weather, or code can make several parts fail together. The deeper sections explain how production checks and fusion methods handle bias, timing, quality, and common-cause failure without claiming certainty that the evidence cannot support.

Production fusion is less about clever math and more about accountable evidence. Start with the deployment claim, then define sensor health checks, disagreement rules, fallback behavior, and validation data before trusting a fused result.

The mathematical gist. For fixed electrode geometry, capacitance changes in the same ratio as soil permittivity. The chapter’s cubic model gives εr=5.34\varepsilon_r=5.34 at 10% VWC and 6.12 at 12%, a 14.5% rise. At 30% and 32% VWC it gives 16.9 and 18.4, a 9.2% rise. The same two-point moisture change therefore creates a nonlinear electrical change, and fouling can imitate that change without any real shift in water content.

Math Bridge · guided foundationsWhy does the same 2% VWC change look different in wet soil?Let Phoebe unpack capacitance, the cubic permittivity model, and the chapter's dry/wet results.
Chapter Roadmap

This chapter moves from field reliability to practical fusion choices:

  1. First we look at why bench-tested sensors fail in production, including field drift, dirty sensing surfaces, and unit mismatches.
  2. Then we turn those failures into validation rules: retries, range checks, last-good fallback, alerts, and logs.
  3. Next we choose between complementary, competitive, and cooperative fusion strategies.
  4. After that we tune a complementary IMU filter and decide when Kalman-style filtering is worth the added complexity.
  5. Finally we connect the fusion math back to averaging windows, production pitfalls, quizzes, and next chapters.

Checkpoints recap the operational rule you should be able to use immediately; optional “deep” sections are useful on a second pass.

31.2 Production-Quality Sensor Systems

Building on the earlier sensor-fusion, noise-characterization, and Kalman-filtering chapters, this page shifts from algorithm theory to field reliability: sensor health, disagreement rules, fallback behavior, validation evidence, and maintenance.

This section shares hard-won lessons from engineers who’ve deployed thousands of sensors and learned what fails (and why).

31.2.1 Why Sensors Fail in Production

Here’s a truth that surprises many engineers: sensors that work perfectly on your bench often fail spectacularly in the field. The following table documents measured accuracy loss from three production IoT deployments:

DeploymentLab AccuracyField Accuracy (6 months)Primary Degradation Cause
Agricultural soil moisture (capacitive)+/-2% VWC+/-5-8% VWCMineral deposits on probe surface; temperature cycling cracks conformal coating
Urban air quality PM2.5 (optical)+/-5 ug/m3+/-15-25 ug/m3Dust accumulation on optical window; humidity condensation creates false readings
Bridge structural vibration (MEMS accelerometer)+/-10 mg+/-10 mg (unchanged)Sealed package with no exposed surfaces; MEMS accelerometers are inherently field-stable

Key lesson: Sensors with exposed sensing elements (probes, optical windows, chemical surfaces) degrade in the field. Sealed MEMS sensors maintain lab accuracy for years. For exposed sensors, budget for scheduled recalibration: every 3-6 months for soil probes, every 1-3 months for optical sensors in polluted environments. Self-test features (like the accelerometer’s electrostatic proof-mass test) let you detect degradation remotely without a field visit.

31.2.2 $327.6M Sensor Fusion Failure

Mars Climate Orbiter (1999) - One of NASA’s most expensive sensor-related disasters.

What happened: The spacecraft used sensor data from multiple systems to calculate trajectory corrections. The navigation team at JPL used metric units (Newtons), but Lockheed Martin’s software sent thrust data in imperial units (pound-force). The “fusion” of these incompatible sensor streams caused the spacecraft to approach Mars about 90 km too low, where it burned up in the atmosphere.

Sensor fusion lessons learned:

  1. Unit consistency is non-negotiable - All sensor data entering a fusion system MUST use consistent units
  2. Validate at boundaries - Check that incoming data is within expected ranges
  3. Document sensor specifications - Every sensor interface should explicitly state units, ranges, and update rates
  4. Independent verification - Have a separate system verify fused outputs make physical sense

The fix that’s now standard: Modern sensor fusion systems include:

  • Explicit unit metadata in all data streams
  • Automatic unit conversion layers
  • Sanity checks (e.g., “is this thrust value physically possible?”)
  • Independent trajectory validation

Cost: $327.6 million total mission cost. Root cause: a single unit mismatch in sensor data fusion.

31.2.3 Fitbit Sensor Fusion

How consumer wearables achieve accurate step counting and activity tracking

A modern fitness tracker like the Fitbit Charge uses sensor fusion to achieve ~95% step counting accuracy. Here’s what’s inside:

The sensor array:

SensorPurposeSampling Rate
3-axis accelerometerDetect motion, steps, sleep movement25-50 Hz
3-axis gyroscopeDistinguish walking from arm swings25 Hz
Optical heart rate (PPG)Detect pulse, correlate with activity25 Hz
BarometerDetect floor changes (stairs)1 Hz
GPS (some models)Outdoor distance, speed1 Hz

The fusion challenge: Your arm swings when you talk, type, and gesture---all of which look like “steps” to a naive accelerometer algorithm. The gyroscope distinguishes arm rotation (typing) from the characteristic arm swing of walking. Heart rate confirms sustained activity. Barometer catches stairs that GPS would miss.

Fusion algorithm (simplified):

1. Accelerometer detects potential step pattern
2. Gyroscope confirms walking arm swing (not typing)
3. Heart rate correlation confirms physical activity
4. Barometer adds/subtracts floor changes
5. GPS (when available) validates distance matches step count
6. Machine learning model weighs all inputs

Why single-sensor fails:

Start by accelerometer only: 70-80% accuracy (counts arm gestures as steps). Then with gyroscope fusion: 90-92% accuracy. Next with heart rate correlation: 94-96% accuracy. Finally full fusion + ML: 95-98% accuracy.

Key insight: The $30 cost difference between a basic pedometer and a smart fitness tracker is mostly in the sensor fusion algorithms, not the hardware.

Reliability Checklist:

AspectRequirementImplementation
Power supplyFiltered, stableLDO regulator + decoupling caps
CommunicationError detectionCRC on sensor data
RedundancyBackup sensorsDual sensors for critical measurements
CalibrationTraceableNIST-traceable reference, documented
LoggingFault trackingStore raw + processed data
WatchdogRecoveryHardware watchdog, auto-reset
UpdatesField upgradeableOTA firmware updates

Error Handling Best Practices:

A production sensor read should follow this sequence:

Start with Try more than once: attempt the read up to three times before declaring failure. Then Validate before using: reject missing values, impossible values, and values outside the sensor’s physical range. Next Cache the last good value: use it only as a temporary fallback, not as permanent truth. After that Count repeated failures: one bad read is noise; many bad reads indicate a real fault. Finally Alert and log: notify operators when the failure count crosses the threshold, and keep raw evidence for debugging.

This pattern keeps the system running safely while making sensor faults visible instead of silently hiding them.

Physics PhoebeCheckpoint: Production Validation

You now know:

  • Lab accuracy is not field accuracy: soil probes can move from +/-2% VWC to +/-5-8% VWC after months outside.
  • Exposed sensors need planned recalibration, often every 3-6 months for soil probes and every 1-3 months for polluted optical sensors.
  • A robust read path tries again, rejects impossible values, uses the last good value temporarily, counts repeated failures, then alerts and logs.

31.2.4 Try It: Sensor Validation Simulator

Simulate sensor readings with configurable failure modes and see how robust validation catches bad data.

31.2.5 Sensor Fusion Decision Guide

Sensor fusion falls into three categories based on how sensor data relates to each other:

StrategyWhen sensors measure…ExampleAlgorithm
ComplementaryDifferent aspects of the same phenomenonGPS (position) + IMU (motion) + barometer (altitude) for 3D trackingKalman filter, complementary filter
CompetitiveThe same quantity independentlyThree temperature sensors on the same pipe for redundancyVoting, weighted average, median
CooperativeData that individually is insufficientCamera + LiDAR for object detection (appearance + depth)Deep learning, feature fusion

These three labels trace back to Durrant-Whyte’s (1988) classification of multi-sensor configurations, and the textbook illustrations are worth knowing because they make the boundary between complementary and cooperative concrete. The classic complementary example is about coverage, not accuracy: mount several cameras around a room so each one watches a different, non-overlapping corner. No single camera sees the whole room and none of them contradicts another — each is simply filling a gap the others cannot see, which is why complementary fusion is described as resolving incompleteness rather than boosting accuracy. The classic cooperative example is stereoscopic vision: two ordinary 2D cameras at slightly different viewpoints, each individually incapable of measuring depth, are combined by triangulation to derive a 3D image that neither camera alone could produce. That is also why cooperative fusion is the hardest of the three to design well — the output does not exist in any single input, so an error in either camera degrades the fused result directly, with no redundant reading available to vote it down.

If your project needs…Choose…Because…
Better accuracy than any single sensorComplementary fusionEach sensor covers others’ weaknesses (GPS gaps + IMU drift cancel out)
Fault tolerance for safety-critical measurementCompetitive fusionTriple redundancy with voting rejects faulty readings
Information that no single sensor can provideCooperative fusionCombined data creates emergent capabilities (e.g., gesture recognition from accelerometer + gyroscope + magnetometer)
Real-time filtering with known system dynamicsKalman filterOptimal for linear systems with Gaussian noise, runs on MCU
Quick prototype, two complementary sensorsComplementary filterSingle tunable parameter (alpha), simpler than Kalman
Non-linear system (e.g., attitude estimation)Extended Kalman (EKF) or MadgwickHandles rotation quaternions, common in IMU fusion

Quick Decision Flowchart:

  1. Are you combining redundant sensors for fault tolerance? Yes —> Competitive fusion (voting/median)
  2. Are you combining sensors that measure different physical quantities? Yes —> Complementary fusion (Kalman filter)
  3. Do you need new information neither sensor provides alone? Yes —> Cooperative fusion (ML-based)
  4. Is the system linear with well-known dynamics? Yes —> Standard Kalman filter
  5. Is the system non-linear (rotation, complex motion)? Yes —> Extended Kalman or Unscented Kalman filter
  6. Default: Start with a complementary filter (simple alpha-blend), upgrade to Kalman when accuracy demands it

Physics PhoebeCheckpoint: Fusion Strategy

You now know:

  • Complementary fusion combines different views of the same phenomenon; competitive fusion compares redundant readings; cooperative fusion creates information no single sensor can provide.
  • A wearable accelerometer alone can land around 70-80% step accuracy, while full fusion plus ML can reach 95-98%.
  • The first design question is whether you need better accuracy, fault tolerance, or a new capability.

31.2.6 Try It: Fusion Strategy Recommender

Answer a few questions about your project and get a recommended sensor fusion strategy.

31.2.7 Complementary IMU Tilt Filter

Scenario: An IoT inclinometer for construction equipment measures tilt angle using an accelerometer and gyroscope. The accelerometer provides absolute tilt but is noisy (vibration). The gyroscope provides smooth rotation rate but drifts over time. Combine them using a complementary filter.

Step 1: Understand sensor characteristics

Accelerometer (measures gravity vector):

  • Accuracy: ±2° (when stationary)
  • Noise: ±10° (with vibration from engine)
  • No drift over time

Gyroscope (measures rotation rate):

  • Short-term accuracy: ±0.1°/s
  • Drift: 0.5°/minute accumulated error
  • Smooth, no vibration noise

Step 2: Implement complementary filter

The filter trusts the gyroscope for short-term changes (smooth) and the accelerometer for long-term reference (no drift).

import math

class ComplementaryFilter:
    def __init__(self, alpha=0.98, dt=0.02):
        """
        alpha: Weight for gyroscope (0.98 = 98% gyro, 2% accel)
        dt: Sample time interval (0.02s = 50 Hz)
        """
        self.alpha = alpha
        self.dt = dt
        self.angle = 0  # Current tilt angle estimate

    def update(self, accel_x, accel_y, accel_z, gyro_x):
        """
        accel_x/y/z: Accelerometer readings (m/s²)
        gyro_x: Gyroscope rotation rate (°/s) around X-axis
        """
        # Calculate angle from accelerometer (noisy but absolute)
        accel_angle = math.atan2(accel_y, accel_z) * 180 / math.pi

        # Integrate gyroscope (smooth but drifts)
        gyro_angle = self.angle + gyro_x * self.dt

        # Complementary filter: blend both estimates
        self.angle = self.alpha * gyro_angle + (1 - self.alpha) * accel_angle

        return self.angle

import time

# Usage example
filter = ComplementaryFilter(alpha=0.98, dt=0.02)  # 50 Hz update rate

while True:
    # Read sensors
    ax, ay, az = read_accelerometer()
    gx, gy, gz = read_gyroscope()

    # Update filter
    tilt_angle = filter.update(ax, ay, az, gx)

    print(f"Tilt: {tilt_angle:.1f}°")
    time.sleep(0.02)  # 50 Hz loop

Step 3: Tune alpha parameter

AlphaGyro WeightAccel WeightResult
0.9090%10%Fast response to tilt, but vibration noise visible
0.9898%2%Smooth output, slow correction of drift (recommended)
0.99599.5%0.5%Very smooth, but drift accumulates noticeably after 5 minutes

Step 4: Measured performance

Testing on a vibrating platform (simulated construction equipment):

MethodRMS Error (stationary)RMS Error (vibrating)Drift after 10 min
Accelerometer only1.8°9.2°0° (no drift)
Gyroscope only0.3°0.3°5.1° (significant drift)
Complementary filter (α=0.98)0.8°1.2°0.3° (minimal drift)

Key insight: The complementary filter achieves better performance than either sensor alone by exploiting their complementary strengths: gyro for high-frequency (vibration rejection), accelerometer for low-frequency (drift correction).

When to upgrade to Kalman filter: If you need to fuse more than 2 sensors (e.g., add magnetometer for heading), or need to model complex dynamics (vehicle motion with GPS, IMU, wheel odometry), use a Kalman filter. For simple 2-sensor fusion, complementary filter is sufficient.

Physics PhoebeCheckpoint: Complementary Filters

You now know:

  • Alpha is a trust knob: alpha = 0.98 means 98% gyroscope weight and 2% accelerometer weight each update.
  • The example filter runs at 50 Hz, so each update uses dt = 0.02 s.
  • In the vibrating-platform test, the complementary filter keeps RMS error to 1.2 deg with only 0.3 deg drift after 10 min.

31.2.8 Complementary Alpha Tuner

Adjust the alpha parameter to see how it balances gyroscope smoothness against accelerometer drift correction. The simulation shows a tilting platform with engine vibration.

Legend: Gray = accelerometer (noisy), red dashed = gyro only (drifts), teal = complementary filter, orange dashed = true angle (15 deg).

31.2.9 Quadcopter Fusion Decision

Using the decision framework above for an ESP32-based quadcopter flight controller:

Start with Sensors: MPU6050 (accel + gyro), BMP280 (barometer), GPS. Then System: Non-linear (attitude uses quaternions). Next Computational budget: ESP32 (240 MHz) can handle 1000 Hz EKF. Finally Memory constraints: Particle filter requires too much RAM; unknown noise is not an issue (MPU6050 is well-characterized).

Decision path:

Start by attitude (roll/pitch/yaw) — 3 sensors, non-linear dynamics —> Extended Kalman Filter. Finally altitude — 3 sensors (barometer + GPS + accel Z-axis), approximately linear —> Standard Kalman filter.

Alternative for beginners: Start with a complementary filter for roll/pitch (accel + gyro), use barometer-only for altitude, then add GPS later with Kalman when ready.

31.3 Longer Averaging Can Mislead

The scenario: An engineer averages 100 capacitive soil moisture readings over 10 seconds, expecting 10x noise reduction. After deployment, readings still wander by +/-3%.

The root cause: As explained in Part 1, the sensor’s 1/f corner frequency (0.5 Hz) means averaging below that frequency captures more drift, not less. The optimal window is ~1 second (staying above the corner), not 10 seconds.

Real-world example: The Vegetronix VH400 soil moisture sensor has a 1/f corner at ~0.2 Hz. The manufacturer recommends averaging for 2 seconds maximum. Customers who averaged for 30 seconds (0.033 Hz) saw WORSE stability than those using 2-second averages---because they were averaging in the 1/f-dominated region.

Key lesson: Always check the sensor’s 1/f corner frequency before choosing an averaging window. Refer to the mitigation strategies in Part 1 for solutions.

Physics PhoebeCheckpoint: Averaging Windows

You now know:

  • More samples do not automatically mean a better production value when 1/f noise dominates.
  • The soil-moisture example shows why 100 readings over 10 seconds can be worse than an averaging window near 1 second.
  • The VH400 example reinforces the rule: 2 seconds maximum worked better than 30 seconds because the longer window fell into the 0.033 Hz drift region.

31.4 Key Takeaway

Single sensors have inherent limitations that only multi-sensor fusion can overcome. The Kalman filter is the gold standard for optimally combining noisy measurements with predictions, but start with a simpler complementary filter for prototyping. Production systems must include error handling, retry logic, range validation, and watchdog timers to achieve reliability.


31.5 Concept Check: Production Robustness

31.6 Perspectives: Who Uses This and How?

31.6.1 Sensor Fusion in Classes

In Physics class, you’ve learned about measurement uncertainty. 1/f noise is what happens when that uncertainty isn’t random---it wanders systematically over time. The Kalman filter is essentially optimal Bayesian inference: updating your belief (prediction) based on new evidence (measurement).

In Math class, the Kalman filter uses matrices (for multi-dimensional systems) and statistics (covariance, variance). The core equation K=PP+RK = \frac{P}{P+R} is just weighted averaging where weights depend on uncertainties.

For your projects: Start with a complementary filter for your science fair IMU project---it’s simpler and works great for tilt sensing. Save Kalman filters for when you need to fuse 3+ sensors or track complex motion.

College prep tip: Understanding sensor fusion will give you a head start in robotics, aerospace, or mechatronics programs. This is the math behind self-driving cars and drone navigation!

31.6.2 Theory Behind the Practice

Mathematical foundations:

The Kalman filter is the optimal linear estimator for systems with: Start by linear state transition: xk=Fxk1+Buk+wkx_k = F x_{k-1} + B u_k + w_k where wkN(0,Q)w_k \sim \mathcal{N}(0, Q). Finally linear observation: zk=Hxk+vkz_k = H x_k + v_k where vkN(0,R)v_k \sim \mathcal{N}(0, R).

The optimality is in the minimum mean squared error (MMSE) sense. For non-linear systems, the Extended Kalman Filter (EKF) linearizes around the current estimate, while the Unscented Kalman Filter (UKF) uses sigma points to capture non-linear transformations more accurately.

Research directions:

Start by particle filters for non-Gaussian, non-linear systems. Then factor graphs and SLAM (Simultaneous Localization and Mapping). Next neural network-based sensor fusion (learned Kalman gains). Finally information-theoretic approaches to sensor selection.

Key papers:

Start by kalman, R.E. (1960). “A New Approach to Linear Filtering and Prediction Problems”. Then julier & Uhlmann (1997). “Unscented Kalman Filter” (UKF introduction). Finally madgwick (2011). “An efficient orientation filter for inertial and inertial/magnetic sensor arrays” (IEEE ICORR 2011, widely used in drones).

1/f noise theory: Also called “flicker noise,” 1/f noise appears in systems with many timescales (e.g., charge trapping in semiconductors). The Allan variance is the standard tool for characterizing noise types: white noise slopes at -1/2, 1/f noise is flat, random walk slopes at +1/2.

31.6.3 Field Implementation Tips

Common production pitfalls we’ve seen:

Start with Trusting datasheet specs: Lab specs assume ideal conditions. Budget 2-3× worse accuracy for field deployment. Then Ignoring sensor warm-up: Many sensors (gas, optical, thermal) need 30+ seconds to stabilize. Reading immediately gives garbage. Next Forgetting cable effects: Long cables add capacitance (affects analog signals) and resistance (affects current loops). Use shielded cables and 4-20mA for runs >10m. Finally No self-test capability: Build in ways to verify sensors are working. The accelerometer’s built-in self-test is a model---stimulate the sensor electrically and verify response.

Tool recommendations:

Start with Allan deviation analysis: Use this to characterize your sensor’s noise profile and find the optimal averaging time. Then Sensor fusion libraries: Use battle-tested code like Madgwick or Mahony for IMU fusion instead of rolling your own. Finally Edge computation: Run Kalman filters on ESP32/STM32 locally; don’t send raw data to cloud for fusion.

Vendor selection criteria:

Start by asking whether the datasheet specifies the 1/f corner frequency, which is a good sign of engineering rigour. Then check whether there is a built-in self-test for field diagnostics. Finally, record the MTBF and warranty, and reject sensors rated only for laboratory use when the deployment requires field reliability.

31.6.4 Executive Brief: Strategic Implications

Business case for sensor fusion:

Start with Accuracy without hardware cost: Fusion extracts more accuracy from existing sensors. A $50 sensor array with fusion outperforms a $500 single sensor in most applications. Then Graceful degradation: Fused systems continue operating (with reduced accuracy) when individual sensors fail. This reduces costly downtime and emergency maintenance. Finally Competitive differentiation: “AI-powered sensing” (which is often just well-implemented Kalman filtering) commands premium pricing.

ROI considerations:

Start by fusion adds ~$2-5 BOM cost (better MCU) but can save $20-50 in sensor costs. Then self-diagnostics reduce field service calls by 30-50%. Finally predictive maintenance (using sensor health monitoring) extends equipment life 20-40%.

Risk factors:

Start by sensor fusion complexity requires skilled engineering talent. Then poorly tuned fusion performs worse than single sensors. Finally regulatory approval (medical, automotive) requires explainable algorithms---black-box ML fusion may not qualify.

Bottom line: Invest in sensor fusion capabilities. It’s a competitive moat that’s hard to copy and provides measurable accuracy and reliability improvements.

31.7 For Kids: Meet the Sensor Squad!

Temperature Terry had a tricky problem: the longer he averaged his readings, the less the averaging helped! “That is 1/f noise,” explained the microcontroller. “It is like pink noise — the longer you wait, the more your baseline wanders.”

But Max had a secret weapon: sensor fusion! “Instead of relying on just one friend, I ask MULTIPLE friends and combine their answers.” Max asked the GPS for position, the accelerometer for movement, and the barometer for altitude. “Each friend has weaknesses, but together they are stronger!”

the LED was fascinated by the Kalman filter. “It is like a smart guesser! First it predicts where you SHOULD be based on how you were moving, then it checks what the sensors ACTUALLY say, and it blends the two together — trusting whichever one is more reliable at that moment!”

the battery added: “And in a real product, we always have a watchdog timer — like a guard dog that barks if the system freezes. If Max stops responding for too long, the watchdog reboots everything automatically!”

31.8 Knowledge Check: Noise and Filter Trust

31.9 Label the Diagram

31.10 Code Challenge

Common Pitfalls

31.10.1 1. MEMS Shock Damage

MEMS sensors contain delicate micromachined structures that can be permanently damaged by mechanical shock exceeding their rated g-limit. Dropping a PCB with a MEMS gyroscope can instantly destroy the sensor. Check the datasheet shock rating and use shock-absorbing mounting in vibration-prone environments.

31.10.2 Electrochemical Cross-Sensitivity

Electrochemical gas sensors respond to their target gas but also to other species undergoing similar reactions. A CO sensor may also respond to hydrogen and ethanol. Always check the cross-sensitivity table and account for potential interferents in the deployment environment.

31.10.3 3. ToF Sensor Failure on Dark Surfaces

Time-of-flight sensors depend on reflected light returning to the detector. Highly absorptive surfaces (matte black, carbon fiber) absorb most laser energy, causing range measurements to fail or read maximum distance. Test sensor performance on actual target surfaces before finalizing the design.

31.10.4 Load Cell Mechanical Stops

Load cells have a rated capacity and a maximum safe overload (typically 150% of rated capacity). Dynamic impacts or user misuse exceeding this permanently deforms the elastic element and changes sensitivity. Always include a mechanical stop limiting maximum applied force to 90% of the overload rating.

31.12 You Might Also Like

Based on the topics covered in this chapter, you may find these related chapters valuable:

If you enjoyed…Then explore…Why?
1/f Noise & Signal ProcessingSignal Processing & FilteringDeeper dive into filtering techniques and noise characterization
Sensor FusionMobile Sensor APIsSee sensor fusion in action for activity tracking and mobile sensing
Kalman FilteringSignal Processing EssentialsFoundational signal processing concepts behind Kalman filtering
Production SystemsSensor Selection GuideChoosing the right sensors for reliable production deployments
IMU & Motion SensingCommon Sensors in IoTDetails on accelerometers, gyroscopes, and other motion sensors