Joli\ArDrone\Buffer\Buffer::getUint32LE PHP Method

getUint32LE() public method

public getUint32LE ( )
    public function getUint32LE()
    {
        $value = unpack('V/', substr($this->data, $this->offset, $this->offset + 4));
        $this->moveOffset(4);
        return dechex($value[1]);
    }