0 votes
in ESP8266 OLED Starter Kit by (130 points)
Hi,

I'd like to use the wunderground icons in the weatherstation. They are on a SD and they have the Phrase (e.g. "Sunny.bmp"). The library let's me pull the icontext (wunderground.getForecastIcon(2)). This returns a "B".

Am I right there is no getForecastxxxx that will return the phrase? Is there a mapping between the ForecastIcon and Phrase you know off?

Thank you,

Paul

1 Answer

+1 vote
by (2.9k points)
Hi, there is a way to get this string:

See WundergroundForecastDemo.ino
Serial.println("getForecastIcon: " + forecasts[i].forecastIcon);

However, typical ESP8266 project doesn't have much RAM memory left, so playing with "your" or live downloaded bitmaps is very limited. So far, the best results are with embedded to the program memory, simplified 4-colors bit array pictures or monochrome bitmaps (fonts).
by (130 points)
Thank you, I'll try your suggestion

Welcome to ThingPulse Q&A, where you can ask questions and receive answers from other members of the community.

https://thingpulse.com

...