Display text from file with linebreaks

Hello,
I would like to realize the following.
A text consisting of 4 lines is written to a file every minute.

54.1 °C - Pufferspeicher oben
52.6 °C - Pufferspeicher unten
25.8 °C - Kollektor Rücklauf
1.9 °C - Kollektor

I would like to output this text on a display (64x64).
The line breaks should be taken from the text file.
Alternatively, I could also create 4 text files per line and each text file should be shown on a separate line on the display.
Is there a solution for this?
Unfortunately, I am not familiar with C or Python programming.
Greetings,
Gavor

What solution do you expect in this case?
That someone will write you ready-made code?
How else can you be helped if you don’t know how to program?

Hello,
What do I expect? Something along the lines of “…yes, this is possible in principle…” or “…no, this is not possible…”, at best someone has already realized something like this and can help me get closer to my desired result.
And no, no, I certainly can’t wait for code programmed especially for me.
Greetings, Gavor

Yes, it definitely possible.
The line breaks are a symbols like any other, they can be saved in a file, and when reading, the program can split the text into lines by these symbols. It is a process that called a “parsing”.

Thank you, which example would you start with here?
I probably find it easier to try to customize an example so that it does what I want it to do.

You could ask something like Claude.ai to write the code for you.

Just describe the platform, hardware and requirement and see how you go!

I don’t think “54.1 °C - Pufferspeicher oben” will fit on a 64-pixel-wide display. Are you trying to scroll the text?

If you’re not familiar with C or Python, maybe you’d like to try Rust? I find this Rust library very easy to use.

1 Like

you might get someone with spare time to help, but generally this group is to help with issues with the library, not to get code written for you fi you don’t know programming. I suggest you learn that first.