關於Arduino Home automation
通過Android手機控製家用電器
將此應用與微控制器(Arduino,Raspberry Pi,AVR,ARM等),HC-05藍牙模塊和中繼模塊配合使用,您可以使用智能手機遠程控製家用電器。
閱讀文檔: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上監視數據。
最新版本1.1.2的更新日誌
Last updated on 2020年07月26日
Bug Fixes
Fixed: App crashed in lower platforms like marshmallow and Lolipop
Fixed: App crashed in lower platforms like marshmallow and Lolipop
Arduino Home automation APK信息
在APKPure安全快速地下載APK
APKPure 使用簽章驗證功能,確保為您提供無病毒的 Arduino Home automation APK 下載。
Arduino Home automation歷史版本
Arduino Home automation 1.1.2
4.4 MB2020年07月26日
Arduino Home automation 1.1.1
4.4 MB2020年07月07日
Arduino Home automation 1.0
3.2 MB2018年10月23日