Joli\ArDrone\Buffer\Buffer::getFloat32 PHP Method

getFloat32() public method

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