Agrarsense
RadarParameters.h
Go to the documentation of this file.
1// Copyright (c) 2023 FrostBit Software Lab at the Lapland University of Applied Sciences
2//
3// This work is licensed under the terms of the MIT license.
4// For a copy, see <https://opensource.org/licenses/MIT>.
5
6#pragma once
7
8#include "RadarParameters.generated.h"
9
10USTRUCT(Blueprintable)
11struct AGRARSENSE_API FRadarParameters
12{
13 GENERATED_BODY()
14
15
18 UPROPERTY(EditAnywhere, BlueprintReadWrite)
19 float Range = 100.0;
20
24 UPROPERTY(EditAnywhere, BlueprintReadWrite)
25 float HorizontalFOV = 30.0;
26
30 UPROPERTY(EditAnywhere, BlueprintReadWrite)
31 float VerticalFOV = 30.0;
32
36 UPROPERTY(EditAnywhere, BlueprintReadWrite)
37 int PointsPerSecond = 1500;
38
42 UPROPERTY(EditAnywhere, BlueprintReadWrite)
43 bool SendDataToRos = true;
44
48 UPROPERTY(EditAnywhere, BlueprintReadWrite)
49 bool VisualizeRadarHits = true;
50};