mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-25 20:20:26 +00:00
* Spelling Fixes * More Spelling Errors * More Spelling Checks * fixed wording * Undo mesh\generated changes * Missed one file on readd * missed second file
11 lines
305 B
C++
11 lines
305 B
C++
#pragma once
|
|
|
|
class UnitConversions
|
|
{
|
|
public:
|
|
static float CelsiusToFahrenheit(float celsius);
|
|
static float MetersPerSecondToKnots(float metersPerSecond);
|
|
static float MetersPerSecondToMilesPerHour(float metersPerSecond);
|
|
static float HectoPascalToInchesOfMercury(float hectoPascal);
|
|
};
|