-
Notifications
You must be signed in to change notification settings - Fork 1
/
Main.ino
145 lines (120 loc) · 3.09 KB
/
Main.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
pinMode(4,OUTPUT);
pinMode(5,OUTPUT);
pinMode(6,OUTPUT);
pinMode(7,OUTPUT);
}
//Tune 1
void tune1(int time) //Here time is the delay value in milliseconds
{
digitalWrite(4,LOW);
digitalWrite(5,HIGH);
digitalWrite(6,LOW);
digitalWrite(7,LOW);
delay(time);
digitalWrite(4,LOW);
digitalWrite(5,LOW);
digitalWrite(6,LOW);
digitalWrite(7,HIGH);
delay(time);
digitalWrite(6,LOW);
digitalWrite(7,HIGH);
digitalWrite(4,LOW);
digitalWrite(5,HIGH);
delay(time);
digitalWrite(4,LOW);
digitalWrite(5,LOW);
digitalWrite(6,LOW);
digitalWrite(7,LOW);
delay(time);
}
//Tune 2
void tune2(int time) //Here time is the delay value in milliseconds
{
digitalWrite(4,LOW);
digitalWrite(5,HIGH);
digitalWrite(6,LOW);
digitalWrite(7,HIGH);
delay(time);
digitalWrite(4,LOW);
digitalWrite(5,HIGH);
digitalWrite(6,LOW);
digitalWrite(7,LOW);
delay(time);
digitalWrite(4,LOW);
digitalWrite(5,HIGH);
digitalWrite(6,LOW);
digitalWrite(7,HIGH);
delay(time);
digitalWrite(4,LOW);
digitalWrite(5,LOW);
digitalWrite(6,LOW);
digitalWrite(7,HIGH);
delay(time);
}
void loop() {
if(Serial.available()>'0')
{ //input from bluetooth
char data=(char)Serial.read();
char choice;
switch(data)
{
case 'a': while(1) // a -> Tune 1 Low tempo (delay of 600 milliseconds)
{ choice=(char)Serial.read();
if(choice == '1')
tune1(600);
else{
break;
}
}
break;
case 'b': while(1) // b -> Tune 1 Mid tempo (delay of 400 milliseconds)
{ choice=(char)Serial.read();
if(choice == '1')
tune1(400);
else{
break;
}
}
break;
case 'c': while(1) // c -> Tune 1 high tempo (delay of 200 milliseconds)
{ choice=(char)Serial.read();
if(choice == '1')
tune1(200);
else{
break;
}
}
break;
case 'd': while(1) // d -> Tune 2 Low tempo (delay of 600 milliseconds)
{ choice=(char)Serial.read();
if(choice == '1')
tune2(600);
else{
break;
}
}
break;
case 'e': while(1) // e -> Tune 2 Mid tempo (delay of 400 milliseconds)
{ choice=(char)Serial.read();
if(choice == '1')
tune2(400);
else{
break;
}
}
break;
case 'f': while(1) // f -> Tune 2 High tempo (delay of 200 milliseconds)
{ choice=(char)Serial.read();
if(choice == '1')
tune2(200);
else{
break;
}
}
break;
}
}
}