| 16 | static const auto LOGGER = Logger("WifiConnect"); |
| 17 | |
| 18 | void View::resetErrors() { |
| 19 | lv_obj_add_flag(password_error, LV_OBJ_FLAG_HIDDEN); |
| 20 | lv_obj_add_flag(ssid_error, LV_OBJ_FLAG_HIDDEN); |
| 21 | lv_obj_add_flag(connection_error, LV_OBJ_FLAG_HIDDEN); |
| 22 | } |
| 23 | |
| 24 | static void onConnect(lv_event_t* event) { |
| 25 | auto wifi = std::static_pointer_cast<WifiConnect>(getCurrentApp()); |