Bodmer
Bodmer
Thanks for reporting this. There was a bug where the space reserved for minutely data was not released. Added line[ here](https://github.com/Bodmer/DarkSkyWeather/blob/master/examples/My_DarkSkyWeather_Test/My_DarkSkyWeather_Test.ino#L169). If you are not collecting the hourly and daily...
The structures cannot be deleted if you set them to nullptr! Just put nullptr in the call: dsw.getForecast(current, nullptr, nullptr, nullptr, api_key, latitude, longitude, units, language);
This is the main function from my adapted test sketch: ``` void printCurrentWeather() { // Create the structures that hold the retrieved weather DSW_current *current = new DSW_current; time_t time;...
Thanks for your interest and positive comments. Yes, I postponed adding the alerts until I got everything else working for the single screen weather TFT display. As you noted the...
OK, the text alerts are quite long according to this pageand newlines are inserted after ~65 characters maximum: https://darksky.net/dev/docs I will experiment, I guess a look at the global weather...
There are a few TTGO variants, a small 1.44", a 2.2" for the bitcoin ticker and a [2.4" with audio out](https://www.aliexpress.com/snapshot/0.html?spm=a2g0s.9042647.6.2.18544c4dXus6o4&orderId=507158458631222&productId=32848882218). I have just ordered one with audio out to...
The library uses **temperatureHigh** and **temperatureLow**. I decided not to use the deprecated forecast. I can add the **temperatureLowTime** and **temperatureHighTime** to the available parameters if you think they will...
The istructions appear to be wrong, in particular: ``` Edit "Arduino/Libraries/JPEGDecoder/src/User_Config.h" and comment out "#define LOAD_SD_LIBRARY" and "#define LOAD_SDFAT_LIBRARY". ``` You should NOT comment out #define LOAD_SD_LIBRARY
Thanks. I have not explored all the features, that is good to know. You can also change the forecast length by editing [the file here](https://github.com/Bodmer/OpenWeather/blob/master/User_Setup.h). This allows the number of...
Do you have an example of what the procedurally generated forecasts and condition summaries look like? This is not a feature I have used. You can continue to use DarkSky...