fishtankmonitor/Weather.cpp

12 lines
No EOL
212 B
C++

#include "Weather.h"
#include <Arduino.h>
#include "openWeatherMapApiKey.h"
Weather::Weather(char *lat, char *lon){
sprintf(_url, WEATHER_URL, lat, lon, OPEN_WEATHER_MAP_API_KEY);
}
void Weather::update(){
}