Joli\ArDrone\Buffer\Buffer::getUint16LE PHP Method

getUint16LE() public method

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