hobd.OBD2Sensor.getraw_dwordle C# (CSharp) Method

getraw_dwordle() public method

public getraw_dwordle ( int idx ) : double
idx int
return double
        public double getraw_dwordle(int idx)
        {
            return (dataraw[idx+0]<<0) + (dataraw[idx+1]<<8) + (dataraw[idx+2]<<16) + (dataraw[idx+3]<<24);
        }