From 41050e6a9851eddb5735b7888e3e48d94604daed Mon Sep 17 00:00:00 2001 From: Jean-François Milants Date: Mon, 29 Dec 2025 22:34:38 +0100 Subject: Weather : Improve simple weather conditions (Pinetime::Applications::Screens::Symbols::GetSimpleCondition) to be more consistent with OpenWeather Api (https://openweathermap.org/weather-conditions) --- src/displayapp/screens/WeatherSymbols.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/displayapp/screens/WeatherSymbols.cpp') diff --git a/src/displayapp/screens/WeatherSymbols.cpp b/src/displayapp/screens/WeatherSymbols.cpp index f7e41547..0a963bc6 100644 --- a/src/displayapp/screens/WeatherSymbols.cpp +++ b/src/displayapp/screens/WeatherSymbols.cpp @@ -63,15 +63,15 @@ const char* Pinetime::Applications::Screens::Symbols::GetCondition(const Pinetim const char* Pinetime::Applications::Screens::Symbols::GetSimpleCondition(const Pinetime::Controllers::SimpleWeatherService::Icons icon) { switch (icon) { case Pinetime::Controllers::SimpleWeatherService::Icons::Sun: - return "Clear"; case Pinetime::Controllers::SimpleWeatherService::Icons::CloudsSun: + return "Clear"; case Pinetime::Controllers::SimpleWeatherService::Icons::Clouds: case Pinetime::Controllers::SimpleWeatherService::Icons::BrokenClouds: - return "Clouds"; + return "Cloudy"; case Pinetime::Controllers::SimpleWeatherService::Icons::CloudShowerHeavy: - return "Rain"; + return "Showers"; case Pinetime::Controllers::SimpleWeatherService::Icons::CloudSunRain: - return "Drizzle"; + return "Rain"; case Pinetime::Controllers::SimpleWeatherService::Icons::Thunderstorm: return "Thunder"; case Pinetime::Controllers::SimpleWeatherService::Icons::Snow: -- cgit v1.2.3-70-g09d2