Skip to content

Commit 41050e6

Browse files
JF002mark9064
authored andcommitted
Weather : Improve simple weather conditions (Pinetime::Applications::Screens::Symbols::GetSimpleCondition) to be more consistent with OpenWeather Api (https://openweathermap.org/weather-conditions)
1 parent 526d841 commit 41050e6

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/displayapp/screens/WeatherSymbols.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@ const char* Pinetime::Applications::Screens::Symbols::GetCondition(const Pinetim
6363
const char* Pinetime::Applications::Screens::Symbols::GetSimpleCondition(const Pinetime::Controllers::SimpleWeatherService::Icons icon) {
6464
switch (icon) {
6565
case Pinetime::Controllers::SimpleWeatherService::Icons::Sun:
66-
return "Clear";
6766
case Pinetime::Controllers::SimpleWeatherService::Icons::CloudsSun:
67+
return "Clear";
6868
case Pinetime::Controllers::SimpleWeatherService::Icons::Clouds:
6969
case Pinetime::Controllers::SimpleWeatherService::Icons::BrokenClouds:
70-
return "Clouds";
70+
return "Cloudy";
7171
case Pinetime::Controllers::SimpleWeatherService::Icons::CloudShowerHeavy:
72-
return "Rain";
72+
return "Showers";
7373
case Pinetime::Controllers::SimpleWeatherService::Icons::CloudSunRain:
74-
return "Drizzle";
74+
return "Rain";
7575
case Pinetime::Controllers::SimpleWeatherService::Icons::Thunderstorm:
7676
return "Thunder";
7777
case Pinetime::Controllers::SimpleWeatherService::Icons::Snow:

0 commit comments

Comments
 (0)