I became curious about magnetometers and was deep into shopping for a prototype breakout board when I remembered I already had some on hand. The bad news is that they're buried inside mobile devices, the good news is that they're already connected to all the supporting circuitry they need. Accessing them is then "merely" a software task.

Android app developers can access magnetometer values via position sensor APIs. It's possible to query everything from raw uncalibrated values to device orientation information computed from calibrated magnetometer data fused with other sensor data. Apple iOS app developers have the Core Motion library from which they can obtain similar information.

But I prefer not to develop a native mobile app because of all the overhead involved. For Android, I would have to install Android Studio (a multi-gigabyte download) and put my device into Developer Mode which hampers its ability to run certain security-focused tasks. For iOS I would have to install Xcode, which is at least as big of a hassle, and I'm not sure what I'd have to do on an iOS device. (Installing TestFlight is part of the picture, but I don't know the whole picture.)

Looking for an alternative: What if I could access sensor data from something with lower overhead, like a small web app? Checking on the ever-omniscient caniuse.com, I found that a magnetometer API does exist. However, it is not (yet?) standardized and hidden behind an optional flag that the user has to explicitly enable. I typed chrome://flags into my address bar and found the "Generic Sensor Extra Classes" option to switch from "Default" to "Enable". After making this change, the associated caniuse.com magnetometer test turned from red to green.

One annoyance of working with magnetometer on Android is that I have to work against an actual device. While Chrome developer tools has an area for injecting sensor data into web apps under test, it does not (yet?) include ability to emulate magnetometer data. And looking over Android Studio documentation, I found settings to emulate sensors like an accelerometer but no mention of magnetometer either.

Looking online for some sample code, I found small code snippets in Google Chrome Developer's blog about the Sensor API. Lots of useful reference on that page but I wanted a complete web app to look at. I found what I was looking for in a "Sensor Info" web app published from Intel's GitHub account. (This was a surprising source, pretty far from Intel's main moneymaker of CPUs. What is their interest in this field? Sadly, that corporate strategic answer is not to be found in this app. I choose to be happy that it exists.) Launching the app, clicking "+" allowed me to add the magnetometer sensor and start seeing data stream through. After looking through this Intel web app's source code repository, I wrote my own minimalist test app streaming magnetometer data. Success! I'm glad it was this easy, but perhaps that was too easy?


Source code for this exploratory project is publicly available on GitHub