aboutsummaryrefslogtreecommitdiffstats
path: root/src/displayapp/Weather.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/displayapp/Weather.h')
-rw-r--r--src/displayapp/Weather.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/displayapp/Weather.h b/src/displayapp/Weather.h
deleted file mode 100644
index 0dd17fce..00000000
--- a/src/displayapp/Weather.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#pragma once
-
-#include <cstdint>
-#include <variant>
-
-#include "components/ble/SimpleWeatherService.h"
-#include "components/settings/Settings.h"
-
-namespace Pinetime {
- namespace Applications {
- struct Temperature {
- int16_t temp;
- };
-
- Temperature Convert(Controllers::SimpleWeatherService::Temperature temp, Controllers::Settings::WeatherFormat format);
- }
-}