Arduino串口通信

下面是Arduino串口通信的HelloWorld版本: [codesyntax lang="cpp"]
/*
* http://surenpi.com
* Hello World for arduino seiral communication.
*/
#include <Stepper.h>

String strData = "";

void setup()
{
  Serial.begin(9600);
}

void loop()
{
   while(Serial.available() > 0)
   {
     strData += char(Serial.read());
     
     delay(2);
   }
   
   if(strData.length() > 0)
   {
     Serial.println(strData);
     strData = "";
   }
}
[/codesyntax] 上面的例子中,通过Arduino IDE控制台输入什么字符串,就会打印出什么字符串。 参考: 有关Arduino的其他文章。 有关树莓派的其他文章。

你可能感兴趣的:(通信,串口,arduino)