SpHr_equal(val1, val2, slop)
Determines if val1 is approximately equal to val2.
Evaluates: if(val1 <= (val2+slop) && val1 >= (val2-slop))