summaryrefslogtreecommitdiff
path: root/src/components/ble/weather/WeatherData.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ble/weather/WeatherData.h')
-rw-r--r--src/components/ble/weather/WeatherData.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/components/ble/weather/WeatherData.h b/src/components/ble/weather/WeatherData.h
index ee2a364d..9b424004 100644
--- a/src/components/ble/weather/WeatherData.h
+++ b/src/components/ble/weather/WeatherData.h
@@ -122,7 +122,7 @@ namespace Pinetime {
* Events have types
* then they're easier to parse after sending them over the air
*/
- enum class eventtype {
+ enum class eventtype : uint8_t {
/** @see obscuration */
Obscuration = 0,
/** @see precipitation */
@@ -141,6 +141,8 @@ namespace Pinetime {
Location = 7,
/** @see cloud */
Clouds = 8,
+ /** @see humidity */
+ Humidity = 9,
Length
};
@@ -340,4 +342,4 @@ namespace Pinetime {
};
};
}
-} \ No newline at end of file
+}