15 lines
350 B
C++
15 lines
350 B
C++
// This file generated by ngrestcg
|
|
// For more information, please visit: https://github.com/loentar/ngrest
|
|
|
|
#include "humidityserver.h"
|
|
|
|
/*std::string humidityserver::echo(const std::string& text)
|
|
{
|
|
return "Hi, " + text;
|
|
}*/
|
|
|
|
float humidityserver::absolutehumidity(float temperature, float humidity) {
|
|
|
|
return temperature + humidity;
|
|
}
|