Joli\ArDrone\Buffer\Buffer::getInt32 PHP Method

getInt32() public method

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