Joli\ArDrone\Buffer\Buffer::getUint8 PHP Method

getUint8() public method

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