diff --git a/dependencies.lock b/dependencies.lock index 6d3593f..982e7b8 100644 --- a/dependencies.lock +++ b/dependencies.lock @@ -293,7 +293,7 @@ dependencies: version: 1.0.2 espressif/libpng: component_hash: - 6eb993575e30da281faa37cecda2338ccf6d11dbd12234937758278d1c78b4fd + 0b469a05847b57f6357577c27bc101b09f22622e12ab09140dbe26f06274c438 dependencies: - name: idf require: private @@ -305,7 +305,7 @@ dependencies: source: registry_url: https://components.espressif.com type: service - version: 1.6.52 + version: 1.6.54 espressif/wifi_remote_over_eppp: component_hash: e1b4c485ed5afe36615b9b555dfdcbe4be33898dc3732b5bedf235bba45bd286 diff --git a/main/Gui.cpp b/main/Gui.cpp index 4cca194..14519cf 100644 --- a/main/Gui.cpp +++ b/main/Gui.cpp @@ -30,8 +30,6 @@ void Gui::create() { if (esp_lv_adapter_lock(-1) == ESP_OK) { - - lv_obj_t * btn1 = lv_btn_create(lv_scr_act()); lv_obj_add_event_cb(btn1, event_handler, LV_EVENT_ALL, NULL); lv_obj_align(btn1, LV_ALIGN_CENTER, 0, -40); diff --git a/main/main.cpp b/main/main.cpp index 5dd8d0e..e5af377 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -53,15 +53,14 @@ public: void run() { ESP_LOGI(TAG, "Creating UI"); - knxWorker.init(); + //knxWorker.init(); gui.create(); ESP_LOGI(TAG, "Application running"); while (true) { vTaskDelay(pdMS_TO_TICKS(10)); knxWorker.loop(); - - + lv_tick_inc(10); } }