Waiting for the new EdgeLine release to come out, I tried to convert a simple file generated by GUI Guider, and the changes to convert it to .ino have been several, but in the end it works, but honestly in Edgeline there is a greater control of shadows, so we are all looking forward to the new release.
I also found a bug in the file generated by Edgeline for generating the screen change:
Edgeline’s output line is: void ChangeScreen (lv_obj_t * target, int fademode, int spd, int delay) {
that my program changes to: void ChangeScreen (lv_obj_t * target, lv_scr_load_anim_t fademode, int spd, int delayy) {
and in this way everything runs smoothly, because rightly fademode does not have to be an integer
apart from this bug and the other on the font name (which must be & lv_font_montserrat_) there were no other hitches and the program imports the Edgeline C file and returns a working code to be used in Arduino Gui in a second.
I also added a color that can be selected with ColorDialog which is automatically added to select the background color of the first screen and the corresponding style is inserted in the global variables (the color must be selected before reading the Edgeline file).
If another color is then selected, the corresponding routine is displayed in the status window.
I haven’t tried using images and their display routines yet … but I’m waiting for the new EdgeLine release.
Hi everyone