mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-27 05:00:38 +00:00
* DropzoneModule hello world * Buttoning things up * Exclude by default * Upstream refs * Cleanup * Add modules folder to path * Case and path matters * Exclude from header * Guard
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);
|
|
};
|