You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this program still doesn't work as expected - when and how will it be fixed?
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
}
void loop() {
// put your main code here, to run repeatedly:
char sbuf[100];
static int n;
sprintf(sbuf, "%3d %10.8f", n++, PI);
Serial.println(sbuf);
delay(1000);
}
improvement request:
please enable sprintf() for float/double, like it's possible in Arduino ARM core
The text was updated successfully, but these errors were encountered: