Arduino Home automation APP
閱讀文檔:http://unciarobotics.com/project/home-automation-project-with-arduino-using-hc-05/
讀取通過藍牙傳輸的數據的基本Arduino代碼如下:
const int relay = 2; //連接繼電器的引腳
字符數據//變量以存儲數據
void setup(){
Serial.begin(9600); //開始串行通訊
pinMode(繼電器,輸出); //將繼電器引腳作為輸出
}
無效循環(){
if(Serial.available()> 0)//如果RX上有數據
{
數據= Serial.read(); //將其保存在變量中
如果(數據=='a')
{digitalWrite(relay,HIGH); //打開燈
Serial.println(“ Light ON”);
}
如果(數據=='b')
{digitalWrite(relay,LOW); //關燈
Serial.println(“ Light OFF”);
}
}
}
}
}
//複製將此代碼粘貼到Arduino IDE中,並在Serial Monitor上監視數據。