Joli\ArDrone\Buffer\Buffer::getBytes PHP Method

getBytes() public method

public getBytes ( $nbBytes )
    public function getBytes($nbBytes)
    {
        $value = substr($this->data, $this->offset, $this->offset + $nbBytes);
        $this->moveOffset($nbBytes);
        return $value;
    }