Thanks and yes I was aware of the data types - esp. from wrapping Arduino / ESP C++ libraries.
To note is that the issue came up for the
Solar Info Panel project, i.e. on the display top left, the date 31.05.2025 was displayed as 32.05.2025.
The date DD.MM.YYYY, as string, is converted using NumberFormat (and some further formatting) from its value received from the HTTP RESTful server, i.e. 1547,0,1307,240,0,0,100,
20250531,1440.
What I am planning is to change the RESTfull server response by splitting the date into YYYY,MM,DD, i.e. 1547,0,1307,240,0,0,100,
2025, 5,31,1440 to avoid using Double/Float value.