dont let the condition icon cover the location

pull/1/head
Thomas Ballmann 3 years ago
parent 74e7028ced
commit 43691b0f6c

@ -66,6 +66,13 @@ void render_current()
{
GFXcanvas1 *canvas = displayGetCanvas();
// icon
const unsigned char *icon = getIconById(weatherData.current_icon, 256);
if (icon)
{
canvas->drawBitmap(192, 0, icon, 256, 256, GxEPD_BLACK, GxEPD_WHITE);
}
// name
canvas->setFont(&FreeSansBold18pt7b);
canvas->setTextSize(1);
@ -78,13 +85,6 @@ void render_current()
canvas->setCursor(50, 120);
canvas->println(weatherData.current_temp);
// icon
const unsigned char *icon = getIconById(weatherData.current_icon, 256);
if (icon)
{
canvas->drawBitmap(192, 0, icon, 256, 256, GxEPD_BLACK, GxEPD_WHITE);
}
// 250 height
// high
canvas->setTextSize(1);

Loading…
Cancel
Save