mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-14 01:25:38 -05:00
8 lines
213 B
TypeScript
8 lines
213 B
TypeScript
export function ConvertMillibarToInchesOfMercury(value: number): number {
|
|
return value / 33.864;
|
|
}
|
|
|
|
export function ConvertPascalToInchesOfMercury(value: number): number {
|
|
return value / 33.864 / 100.0;
|
|
}
|