mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-29 22:20:37 +00:00
11 lines
305 B
C
11 lines
305 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
class UnitConversions
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
static float CelsiusToFahrenheit(float celcius);
|
||
|
|
static float MetersPerSecondToKnots(float metersPerSecond);
|
||
|
|
static float MetersPerSecondToMilesPerHour(float metersPerSecond);
|
||
|
|
static float HectoPascalToInchesOfMercury(float hectoPascal);
|
||
|
|
};
|