basis for project to upload to server.

This commit is contained in:
2025-07-09 14:29:03 +02:00
commit 7fcf5f816b
15 changed files with 316 additions and 0 deletions

20
include/weather.hpp Normal file
View File

@ -0,0 +1,20 @@
#ifndef WEATHER_H_
#define WEATHER_H_
#include <vector>
class Weather{
private:
float* rain;
float* rain_nutrient;
float* rain_ph;
float* temperature;
float* wind;
float* O2;
float* CO2;
float* H2O;
float* CH4;
float* N2;
float* airpressure;
};
#endif // WEATHER_H_