aboutsummaryrefslogtreecommitdiffstats
path: root/src/displayapp/Weather.h
diff options
context:
space:
mode:
authorFintasticMan <finlay.neon.kid@gmail.com>2024-10-02 11:58:32 +0200
committerJF <JF002@users.noreply.github.com>2024-11-04 21:22:38 +0100
commite247bd701903cc507ba0e0ac4f938ab4616562e7 (patch)
tree2b7e71bb5083eb57baa8056b1b78adc8a24946ae /src/displayapp/Weather.h
parent29ad09f4ef54126831d36fe1b99e794059fc5421 (diff)
Switch to simpler temperature interface
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);
- }
-}