String msgStr ="";
float floatData = 35.5 ;
void setup() {
Serial.begin(115200);
}
void loop() {
msgStr = String(floatData);
Serial.print(“msgStr :”);
Serial.println(msgStr);
delay (2000);
}
使用BW16 板子 ,Arduino IDE 無問題 但Serial print
_rtl_sprintf: format not support!
msgStr :.2f
不知 語法
msgStr = String(floatData);
要如何修正