Skip to content

Commit c04813b

Browse files
FintasticManJF002
authored andcommitted
weather: Add function for temperature in Fahrenheit
1 parent fc5424c commit c04813b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/components/ble/SimpleWeatherService.h

+4
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,10 @@ namespace Pinetime {
104104
std::optional<CurrentWeather> Current() const;
105105
std::optional<Forecast> GetForecast() const;
106106

107+
static int16_t CelsiusToFahrenheit(int16_t celsius) {
108+
return celsius * 9 / 5 + 3200;
109+
}
110+
107111
private:
108112
// 00050000-78fc-48fe-8e23-433b3a1942d0
109113
static constexpr ble_uuid128_t BaseUuid() {

0 commit comments

Comments
 (0)