Where are the sprintf formatting specifiers listed?
I looked in the examples, samples, guides, references, and there's nothing listed.
For example a function with the signature that returns:
unsigned long getEpochTime() const;
With the function:
[tt][/tt] Serial.println(timeClient.getEpochTime()); // compiles ok
String path = sprintf("/system-test/%lu", timeClient.getEpochTime()); // fails to compile
Fails to compile with the error:
error: invalid conversion from 'int' to 'const char*' [-fpermissive]
Is there some documentation about which stdlib the Arduino Create UI uses? The forum docs only provide this link: avr-libc: <stdio.h>: Standard IO facilities
Sorry to ask this question, especially on a forum like this where everyone seems to angry