aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ble/SimpleWeatherService.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ble/SimpleWeatherService.h')
-rw-r--r--src/components/ble/SimpleWeatherService.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/components/ble/SimpleWeatherService.h b/src/components/ble/SimpleWeatherService.h
index 890497d7..561917eb 100644
--- a/src/components/ble/SimpleWeatherService.h
+++ b/src/components/ble/SimpleWeatherService.h
@@ -61,20 +61,20 @@ namespace Pinetime {
Unknown = 255
};
+ using Location = std::array<char, 33>; // 32 char + \0 (end of string)
struct CurrentWeather {
CurrentWeather(uint64_t timestamp,
uint8_t temperature,
uint8_t minTemperature,
uint8_t maxTemperature,
- uint8_t iconId,
- const char* location)
+ Icons iconId,
+ Location&& location)
: timestamp {timestamp},
temperature {temperature},
minTemperature {minTemperature},
maxTemperature {maxTemperature},
- iconId {iconId} {
- std::memcpy(this->location, location, 32);
- this->location[32] = 0;
+ iconId {iconId},
+ location{std::move(location)} {
}
uint64_t timestamp;
@@ -82,7 +82,7 @@ namespace Pinetime {
uint8_t minTemperature;
uint8_t maxTemperature;
Icons iconId;
- char location[33]; // 32 char + \0 (end of string)
+ Location location;
bool operator==(const CurrentWeather& other) const;
};
@@ -94,7 +94,7 @@ namespace Pinetime {
struct Day {
uint8_t minTemperature;
uint8_t maxTemperature;
- uint8_t iconId;
+ Icons iconId;
};
std::array<Day, MaxNbForecastDays> days;