forked from DeepakSain568/Bluetooth_Controlled_Robot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBT_CAR_UPDATED_FOR_M1,M2.ino
109 lines (98 loc) · 3.13 KB
/
BT_CAR_UPDATED_FOR_M1,M2.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
//Arduino Bluetooth Controlled Car//
//// Before uploading the code you have to install the necessary library//
//AFMotor Library https://learn.adafruit.com/adafruit-motor-shield/library-install //
#include <AFMotor.h>
//initial motors pin
AF_DCMotor motor1(1);
AF_DCMotor motor2(2);
//AF_DCMotor motor3(3);
//AF_DCMotor motor4(4);
char command;
void setup()
{
Serial.begin(9600); //Set the baud rate to your Bluetooth module.
}
void loop()
{
if(Serial.available() > 0)
{
command = Serial.read();
Serial.println(command);
Stop(); //initialize with motors stoped
//Change pin mode only if new command is different from previous.
//Serial.println(command);
switch(command)
{
case 'F':
forward();
break;
case 'B':
back();
break;
case 'L':
left();
break;
case 'R':
right();
break;
case 'S':
Stop();
break;
}
}
}
void forward()
{
motor1.setSpeed(255); //Define maximum velocity
motor1.run(FORWARD); //rotate the motor clockwise
motor2.setSpeed(255); //Define maximum velocity
motor2.run(FORWARD); //rotate the motor clockwise
//motor3.setSpeed(255);//Define maximum velocity
//motor3.run(FORWARD); //rotate the motor clockwise
//motor4.setSpeed(255);//Define maximum velocity
// motor4.run(FORWARD); //rotate the motor clockwise
}
void back()
{
motor1.setSpeed(255); //Define maximum velocity
motor1.run(BACKWARD); //rotate the motor anti-clockwise
motor2.setSpeed(255); //Define maximum velocity
motor2.run(BACKWARD); //rotate the motor anti-clockwise
//motor3.setSpeed(255); //Define maximum velocity
// motor3.run(BACKWARD); //rotate the motor anti-clockwise
// motor4.setSpeed(255); //Define maximum velocity
//motor4.run(BACKWARD); //rotate the motor anti-clockwise
}
void left()
{
motor1.setSpeed(255); //Define maximum velocity
motor1.run(FORWARD); //rotate the motor anti-clockwise
motor2.setSpeed(255); //Define maximum velocity
motor2.run(RELEASE); //rotate the motor anti-clockwise
//motor3.setSpeed(255); //Define maximum velocity
//motor3.run(FORWARD); //rotate the motor clockwise
//motor4.setSpeed(0); //Define maximum velocity
// motor4.run(RELEASE); //rotate the motor clockwise
}
void right()
{
motor1.setSpeed(255); //Define maximum velocity
motor1.run(RELEASE); //rotate the motor clockwise
motor2.setSpeed(255); //Define maximum velocity
motor2.run(FORWARD); //rotate the motor clockwise
//motor3.setSpeed(0); //Define maximum velocity
//motor3.run(RELEASE); //rotate the motor anti-clockwise
// motor4.setSpeed(255); //Define maximum velocity
//motor4.run(FORWARD); //rotate the motor anti-clockwise
}
void Stop()
{
motor1.setSpeed(0); //Define minimum velocity
motor1.run(RELEASE); //stop the motor when release the button
motor2.setSpeed(0); //Define minimum velocity
motor2.run(RELEASE); //rotate the motor clockwise
//motor3.setSpeed(0); //Define minimum velocity
//motor3.run(RELEASE); //stop the motor when release the button
//motor4.setSpeed(0); //Define minimum velocity
//motor4.run(RELEASE); //stop the motor when release the button
}