enhancement or my confusion #854
Replies: 1 comment 1 reply
-
|
Getting the text from a dropdown Checking flags and triggering actions System monitor widget (FPS/CPU) Screen transitions appearing slow after upload |
Beta Was this translation helpful? Give feedback.

Uh oh!
There was an error while loading. Please reload this page.
-
I have been using EEZ for about 6 months and am enjoying learning the software. I use Platform IO to code to my ESP32 LVGL 9.3. I can build my screens and add widgets. My coding background is OOP C#.
An issue or two I have run into are:
When a series of events take place, check if all "flags" and determine action. A LVGL Dropdown has an index and a text value. Should be able to grab the Text and save that text to a variable... Nope, I have to add extra coding to the call_back to get the e obj and extract the text and copy to the variable.
lv_obj_t * obj = lv_event_get_target(e);
char buf[64];
lv_dropdown_get_selected_str(obj, buf, sizeof(buf));//string var_selected_network
set_var_var_selected_network(buf);
been all through the expression builder and cannot locate anything
A nice to have is an easy method of adding a system monitor widget in the gui to show fps and cpu. (not had any success). Within EEZ Studio, the screens transition nicely. Once the code is compiled and uploaded, transitions are almost non existent unless time is set to 1000+
any thoughts?
thanks for all your work
Beta Was this translation helpful? Give feedback.
All reactions