1
0
mirror of https://github.com/s00500/SimpleExpressions synced 2024-06-02 05:13:26 +00:00
SimpleExpressions/examples/mouth.ino

27 lines
551 B
Arduino
Raw Normal View History

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-22 15:22:42 +00:00
//SimpleExpressions._tone(440, 5000,1);
2017-11-20 16:49:55 +00:00
}
void loop() {
2017-11-22 15:22:42 +00:00
SimpleExpressions.writeMouth("zeros");
2017-11-22 12:50:16 +00:00
delay(500);
SimpleExpressions.printMouthShape(1);
delay(500);
2017-11-22 15:22:42 +00:00
SimpleExpressions.writeMouth("happyFull");
2017-11-22 12:50:16 +00:00
delay(500);
2017-11-22 15:22:42 +00:00
SimpleExpressions.writeMouth("zeros");
2017-11-22 12:50:16 +00:00
delay(500);
2017-11-22 15:22:42 +00:00
SimpleExpressions.writeMouth("sadFull");
delay(500);
SimpleExpressions.writeMouth("sadSmall");
2017-11-22 12:50:16 +00:00
delay(500);
2017-11-20 16:49:55 +00:00
}