void setup() {
// put your setup code here, to run once:
Serial.begin(9600); //()裡的是包率
Serial.read();
Serial.write("0xAB");
delay(1000);
Serial.println("AB");
delay(1000);
}
void loop() {
// put your main code here, to run repeatedly:
Serial.available(); //Serial.available() 檢測有沒有讀到東西
//傳送資料
//Serial.print(字元、字串、byte、float、數值);
//Serial.write(數值、緩衝區);
//接收資料
//Serial.available() 檢查收到的資料個數
//Serial.available()的回傳值>0代表有收到資料,此時可以用Serial.read()來接收資料
}