28 lines
384 B
C++
28 lines
384 B
C++
#include <Arduboy2.h>
|
|
#include <ArdVoice.h>
|
|
#include "voices.h"
|
|
|
|
Arduboy2 arduboy;
|
|
ArdVoice ardvoice;
|
|
|
|
void setup() {
|
|
arduboy.begin();
|
|
arduboy.setFrameRate(30);
|
|
ardvoice.playVoice(merry_q6);
|
|
}
|
|
|
|
|
|
void loop() {
|
|
if (!(arduboy.nextFrame()))
|
|
return;
|
|
|
|
if (arduboy.pressed(B_BUTTON)){
|
|
ardvoice.playVoice(merry_q6);
|
|
}
|
|
|
|
if (arduboy.pressed(A_BUTTON)){
|
|
ardvoice.stopVoice();
|
|
}
|
|
}
|
|
|