Updating example

This commit is contained in:
Lukas Bachschwell 2017-11-23 15:36:18 +01:00
parent f93c25b2ce
commit 3630a9342d
1 changed files with 13 additions and 2 deletions

View File

@ -3,8 +3,19 @@
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
SimpleExpressions.init(13, 14);
//SimpleExpressions._tone(440, 5000,1);
delay(2000);
SimpleExpressions.init(13, 17);
SimpleExpressions.clearMouth();
for (int i = 0; i < 18; i++) {
Serial.println(i);
SimpleExpressions.printMouth(i, 30, 0, 0);
SimpleExpressions.playSound(i);
delay(1000);
}
}