improvement request: please enable sprintf() for float/double, like it's possible in Arduino ARM core ``` char* str[100]; // not possible for AVR and nodeMCU but possible for Arduino ARM core sprintf(s, "floats: %4.2f %+.0e %E \n", 3.1416, 3.1416, 3.1416); ```