如何將int,n
轉換爲字符串,以便在通過串行發送它時將其作爲字符串發送?如何將int轉換爲Arduino上的字符串?
這是我到目前爲止有:
int ledPin=13;
int testerPin=8;
int n=1;
char buf[10];
void setup()
{
pinMode(ledPin, OUTPUT);
pinMode(testerPin, OUTPUT);
Serial.begin(115200);
}
void loop()
{
digitalWrite(ledPin, HIGH);
sprintf(buf, "Hello!%d", n);
Serial.println(buf);
delay(500);
digitalWrite(ledPin, LOW);
delay(500);
n++;
}
無sprintf在Arduino上? – Pubby
?這裏所有的評論都沒有了......發生了什麼? – user947659
@Pubby「printf()使您的可執行對象大1000字節,所以如果大小有問題,您可能不想使用它。」 http://playground.arduino.cc/Main/Printf –