I want to convert a float value to the scientific value, what's the syntax in Arduino IDE? for example, float f = 0.0032 in float should be print like 3.2x10^(-3)
Serial.println(float2s(f, 7));
this syntax is not working in Arduino IDE.
Please help me to fix it.
Thanks in advance.