I'm new to the Arduino and diddo not quite understand the F() Macro so farF() macro yet.
In my code, I have a stringString, and as I want to transfer it via WebServer, I need to write it to the answer.
Somehow I need to convert the stringString, to fit it into the fastrprintlfastrprintln() function.
String weather_json = getWeatherData(); char weather[2048]; weather_json.toCharArray(weather,2048); client.fastrprintln(F(weather));
String weather_json = getWeatherData();
char weather[2048];
weather_json.toCharArray(weather,2048);
client.fastrprintln(F(weather));
Do you have any idea for me? Thanks!