GPS data to TextArea

Description

I want to update a TextArea with data from my GPS.ino. I am probably going about it backwards.

This where I want the data from the gps. (38 4’ 33") TextArea box
Screenshot 2024-06-22 at 4.44.12 PM

This is my friend’s version using TFT_eSPI and his code. And the format for Lat./Lon:

What MCU/Processor/Board and compiler are you using?

LilyGO T4 S3, Ardunio IDE 2.3.2. Using Squareline 1.4.1

What LVGL version are you using?

8.3.11

What do you want to achieve?

I want to update a TextArea with data from my GPS.ino

What have you tried so far?

Looking for code using Squareline 1.4.1

Code to reproduce

Add a code snippet which can run in the simulator. It should contain only the relevant code that compiles without errors when separated from your main code base.

The code block(s) should be formatted like:
void ui_event_Lat( lv_event_t * e) { lv_event_code_t event_code = lv_event_get_code(e);lv_obj_t * target = lv_event_get_target(e); if ( event_code == LV_EVENT_VALUE_CHANGED) { latChanged( e ); }

Screenshot and/or video

If possible, add screenshots and/or videos about the current state.