في هذا المشروع ، سنتحكم في محرك تيار مستمر بهاتف ذكي عبر البلوتوث. هذا المشروع رائع لمعرفة المزيد عن: -محرك بتيار مستمر -تثبيت اردوينو مع هاتفك الذكي وحدة بلوتوث
- المكونات الاساسية :
- Arduino UNO R3
- Module HC-06 Bluetooth
- 5v DC Motor
- Smartphone
- Mini Breadboard
- Jumper wires
- مخطط الرسم البياني :
- تحميل التطبيق هنا :
- تحميل الكود أردوينو :
// Project : Dc motor control bluetooth with arduino
// By : DIY Channel
// My Youtube Channel : https://www.youtube.com/c/DIYChannel2019
String readString;
#define MOTOR 3
void setup()
{
Serial.begin(9600);
pinMode(MOTOR, OUTPUT);
}
void loop()
{
while(Serial.available())
{
delay(10);
char c = Serial.read();
if (c == '#'){
break;
}
readString += c;
}
if (readString.length() >0)
{
Serial.println(readString);
if(readString == "0"){
digitalWrite(MOTOR, LOW);
}
else if(readString == "1")
{
digitalWrite(MOTOR, HIGH);
}
}
readString="";
}
--------------------------------------------------------------------
bluetooth,bluetooth control car,dc motor,control dc motor,arduino - control dc motor via bluetooth,control,arduino bluetooth control,motor,arduino bluetooth control app,bluetooth servo motor code,servo motor control tutorial,arduino bluetooth control car code,how to control servo motor,bluetooth remote control car using arduino,arduino bluetooth control car program,arduino bluetooth control car with code,arduino bluetooth control car project report,how yo control motor using bluetooth
No comments:
Post a Comment