Have you check the scaling factor? For mg/dL it will be 10.0 and for mmol/L is 18.0...
double getGlucoseValue(int fstByte, int sndByte) { return (((256 * fstByte) + (sndByte)) & 0x0FFF) / scaling_factor; }