Author: Adam Evyčędo <git@apiote.xyz>
show weather on watch face mine
src/displayapp/screens/WatchFaceMine.cpp | 15 ++-------------
diff --git a/src/displayapp/screens/WatchFaceMine.cpp b/src/displayapp/screens/WatchFaceMine.cpp index 392e05544e1e307bbc1c2c6e59970683b282ce2a..4371217c4fe79d89d6842e7c7ea9fb779c3809ca 100644 --- a/src/displayapp/screens/WatchFaceMine.cpp +++ b/src/displayapp/screens/WatchFaceMine.cpp @@ -88,21 +88,11 @@ lv_obj_set_style_local_text_font(weatherIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &fontawesome_weathericons); lv_label_set_text(weatherIcon, Symbols::ban); lv_obj_align(weatherIcon, nullptr, LV_ALIGN_IN_TOP_MID, -15, 50); lv_obj_set_auto_realign(weatherIcon, true); - if (settingsController.GetPTSWeather() == Pinetime::Controllers::Settings::PTSWeather::On) { - lv_obj_set_hidden(weatherIcon, false); - } else { - lv_obj_set_hidden(weatherIcon, true); - } temperature = lv_label_create(lv_scr_act(), nullptr); lv_label_set_text(temperature, "--"); lv_obj_set_style_local_text_color(temperature, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x7b7e82)); lv_obj_align(temperature, nullptr, LV_ALIGN_IN_TOP_MID, 15, 50); - if (settingsController.GetPTSWeather() == Pinetime::Controllers::Settings::PTSWeather::On) { - lv_obj_set_hidden(temperature, false); - } else { - lv_obj_set_hidden(temperature, true); - } lv_style_init(&tick_style); @@ -342,8 +332,6 @@ } else { lv_label_set_text(temperature, "--"); lv_label_set_text(weatherIcon, Symbols::ban); } - lv_obj_realign(temperature); - lv_obj_realign(weatherIcon); } } @@ -424,7 +412,7 @@ lv_obj_add_style(steps_body_trace, LV_LINE_PART_MAIN, &steps_line_style_trace); } } - // DrawWeather(); + DrawWeather(); } std::string WatchFaceMine::gregorianToFixed(uint8_t day, Pinetime::Controllers::DateTime::Months month, uint16_t year) { @@ -522,6 +510,7 @@ if (p12 == 0){ break; } + decimal = p12; } return sign + result;