diff options
| author | Avamander <avamander@gmail.com> | 2021-08-21 18:58:03 (GMT) |
|---|---|---|
| committer | Avamander <avamander@gmail.com> | 2021-12-04 20:03:40 (GMT) |
| commit | ed6f0aade4db811b5013441c57944baff4528938 (patch) | |
| tree | 576bbccdf1cd748f9889520e3932788479fb334c /src/components/ble/weather/WeatherData.h | |
| parent | 0ed256ba15ceace2949f21ecbc1407b8553dd75d (diff) | |
Implemented a few functions.
Diffstat (limited to 'src/components/ble/weather/WeatherData.h')
| -rw-r--r-- | src/components/ble/weather/WeatherData.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/components/ble/weather/WeatherData.h b/src/components/ble/weather/WeatherData.h index ee2a364..9b42400 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 +} |
