basis for project to upload to server.
This commit is contained in:
20
include/weather.hpp
Normal file
20
include/weather.hpp
Normal 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_
|
||||
Reference in New Issue
Block a user