mirror of
https://github.com/meshtastic/firmware.git
synced 2025-10-01 05:15:50 +00:00
16 lines
256 B
C++
16 lines
256 B
C++
#pragma once
|
|
|
|
class BRCAddress
|
|
{
|
|
public:
|
|
BRCAddress(int32_t lat, int32_t lon);
|
|
|
|
int radial(char *buf, size_t len);
|
|
int annular(char *buf, size_t len);
|
|
int full(char *buf, size_t len);
|
|
|
|
private:
|
|
float bearing;
|
|
float distance;
|
|
};
|