This commit is contained in:
Thomas Peterson 2026-01-21 18:55:48 +01:00
parent ff1e9bb4d5
commit 81bd49652d
3 changed files with 4 additions and 7 deletions

View File

@ -293,7 +293,7 @@ dependencies:
version: 1.0.2 version: 1.0.2
espressif/libpng: espressif/libpng:
component_hash: component_hash:
6eb993575e30da281faa37cecda2338ccf6d11dbd12234937758278d1c78b4fd 0b469a05847b57f6357577c27bc101b09f22622e12ab09140dbe26f06274c438
dependencies: dependencies:
- name: idf - name: idf
require: private require: private
@ -305,7 +305,7 @@ dependencies:
source: source:
registry_url: https://components.espressif.com registry_url: https://components.espressif.com
type: service type: service
version: 1.6.52 version: 1.6.54
espressif/wifi_remote_over_eppp: espressif/wifi_remote_over_eppp:
component_hash: component_hash:
e1b4c485ed5afe36615b9b555dfdcbe4be33898dc3732b5bedf235bba45bd286 e1b4c485ed5afe36615b9b555dfdcbe4be33898dc3732b5bedf235bba45bd286

View File

@ -30,8 +30,6 @@ void Gui::create()
{ {
if (esp_lv_adapter_lock(-1) == ESP_OK) { if (esp_lv_adapter_lock(-1) == ESP_OK) {
lv_obj_t * btn1 = lv_btn_create(lv_scr_act()); lv_obj_t * btn1 = lv_btn_create(lv_scr_act());
lv_obj_add_event_cb(btn1, event_handler, LV_EVENT_ALL, NULL); lv_obj_add_event_cb(btn1, event_handler, LV_EVENT_ALL, NULL);
lv_obj_align(btn1, LV_ALIGN_CENTER, 0, -40); lv_obj_align(btn1, LV_ALIGN_CENTER, 0, -40);

View File

@ -53,15 +53,14 @@ public:
void run() { void run() {
ESP_LOGI(TAG, "Creating UI"); ESP_LOGI(TAG, "Creating UI");
knxWorker.init(); //knxWorker.init();
gui.create(); gui.create();
ESP_LOGI(TAG, "Application running"); ESP_LOGI(TAG, "Application running");
while (true) { while (true) {
vTaskDelay(pdMS_TO_TICKS(10)); vTaskDelay(pdMS_TO_TICKS(10));
knxWorker.loop(); knxWorker.loop();
lv_tick_inc(10);
} }
} }