hobd.OBD2Sensor.getraw_dword C# (CSharp) Method

getraw_dword() public method

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