mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-14 17:23:11 -05:00
4 lines
94 B
TypeScript
4 lines
94 B
TypeScript
export function ConvertCToF(value: number): number {
|
|
return (value * 9.0) / 5.0 + 32.0;
|
|
}
|