2017-11-20 16:49:55 +00:00
|
|
|
#include <SimpleExpressions.h>
|
|
|
|
|
|
|
|
void setup() {
|
2017-11-22 12:50:16 +00:00
|
|
|
// put your setup code here, to run once:
|
|
|
|
Serial.begin(115200);
|
2017-11-21 12:09:40 +00:00
|
|
|
SimpleExpressions.init(13, 14);
|
2017-11-20 16:49:55 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void loop() {
|
|
|
|
|
2017-11-22 12:50:16 +00:00
|
|
|
SimpleExpressions.printMouthShape(0);
|
|
|
|
//SimpleExpressions.writeMouth("zeros");
|
|
|
|
delay(500);
|
|
|
|
SimpleExpressions.printMouthShape(1);
|
|
|
|
//SimpleExpressions.writeMouth("happySmall");
|
|
|
|
delay(500);
|
|
|
|
//SimpleExpressions.writeMouth("happyFull");
|
|
|
|
SimpleExpressions.printMouthShape(2);
|
|
|
|
delay(500);
|
|
|
|
SimpleExpressions.printMouthShape(3);
|
|
|
|
//SimpleExpressions.writeMouth("zeros");
|
|
|
|
delay(500);
|
|
|
|
//SimpleExpressions.writeMouth("sadSmall");
|
|
|
|
SimpleExpressions.printMouthShape(4);
|
|
|
|
delay(500);
|
|
|
|
|
|
|
|
|
2017-11-20 16:49:55 +00:00
|
|
|
}
|