Added a cpu temperature custom module. (#446)
* Added a CPU Temperature module. * Update defauls and add wiki link. * Move celsius to fahr conversion to method.
This commit is contained in:
@@ -215,4 +215,8 @@ export const getWeatherStatusTextIcon = (weatherData: Weather): WeatherIcon => {
|
||||
}
|
||||
};
|
||||
|
||||
export const convertCelsiusToFahrenheit = (celsiusValue: number): number => {
|
||||
return (celsiusValue * 9) / 5 + 32;
|
||||
};
|
||||
|
||||
globalThis['globalWeatherVar'] = globalWeatherVar;
|
||||
|
||||
Reference in New Issue
Block a user