Weather settings

This commit is contained in:
MM20
2022-01-01 22:43:25 +01:00
parent 1a3fde5bf5
commit d18feccfe4
7 changed files with 326 additions and 1 deletions
+12
View File
@@ -80,4 +80,16 @@ message Settings {
}
BadgeSettings badges = 3;
message WeatherSettings {
enum WeatherProvider {
MetNo = 0;
OpenWeatherMap = 1;
Here = 2;
BrightSky = 3;
}
WeatherProvider provider = 1;
bool imperial_units = 2;
}
WeatherSettings weather = 4;
}