clap1
parent
d6ed3d7409
commit
c03370bb8c
@ -0,0 +1,26 @@
|
|||||||
|
void setup() {
|
||||||
|
// put your setup code here, to run once:
|
||||||
|
Serial.begin(9600);
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void loop() {
|
||||||
|
// put your main code here, to run repeatedly:
|
||||||
|
char pat[] = "xxx xx x xx ";
|
||||||
|
Serial.println("STARTOF PROGRAM");
|
||||||
|
int i = 0;
|
||||||
|
while (i<12) {
|
||||||
|
// do something (with i)
|
||||||
|
if (pat[i] == 'x') {
|
||||||
|
tone(11, 440, 40);
|
||||||
|
delay(40);
|
||||||
|
tone(11, 220, 40);
|
||||||
|
|
||||||
|
}
|
||||||
|
Serial.println(pat[i]);
|
||||||
|
i++;
|
||||||
|
delay(150);
|
||||||
|
}
|
||||||
|
Serial.println("END OF PROGRAM");
|
||||||
|
}
|
Loading…
Reference in New Issue