Add weather routes project progress

This commit is contained in:
2025-04-07 19:40:38 +02:00
parent 8941d84bc8
commit fa5f6b2588
52 changed files with 2027 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#ifndef WEATHERSTATUS_H
#define WEATHERSTATUS_H
#include <stdint.h>
enum WeatherStatus : uint8_t {
UNKNOWN = 0,
SUNNY,
PARTLY_CLOUDY,
CLOUDY,
RAINY,
SNOWING,
HAILSTORM,
FROZED_TO_DEAD,
THUNDERSTORM,
TSUNAMI
};
#endif // WEATHERSTATUS_H