From wikipedia's RC time constant entry: Cutoff frequency - The time constant is related to the cutoff frequency fc, an alternative parameter of the RC circuit
tau = 1 / (2π * f)
Why 2π? From wikipedia's time constant entry
ω = 2π * f is the frequency in radians per second.
From the same entry, Tau is the equivalent of RC and is the rise time of the system. A low rise time means that higher frequency input will not excite the system. It is easy to image then that it is connected to the low pass filter's cutoff frequency. Ultimately it controls how much of the feedback signal is mixed in with the new input signal.
In my 2nd order low pass filter, I use the following for alpha.
α = 1 / (T * tau)
In my audio application the 2nd order filter is two single order filters chained, and I calculate the filter output like this. filter1Out and filter2out are the current values of the filters and this is the update after receiving input.
filter1Out = filter1Out + (alpha * (input - filter1Out));
filter2Out = filter2Out + (alpha * (filter1Out - filter2Out));
To determine what you want your cutoff frequency to be with the Android compass, I would at first not implement any filtering and try to use the data as provided. The cutoff really depends on what you are doing with the signal. Are you smoothing it for on screen animations? Are you smoothing it for path tracking? Is there noise in the signal that you want to reject? Each could need a different setting. If the unfiltered signal changes too often then figure out how often you want it to change and use that as your starting point for the filter cutoff.
I hope this helps. The derivation of the DSP math is beyond my skills, but I've implemented low pass filters for audio applications a few times.
int getMinDelay()converted to Hz and fc is going to be something you tweak depending on your application, and will also be Hz. I'm sure you've seen sensor overview, it has information on working with sensor data. – Jason Nov 6 '12 at 22:21