mirror of
				https://github.com/s00500/SimpleExpressions
				synced 2025-11-03 23:03:24 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			721 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			721 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include <SimpleExpressions.h>
 | 
						|
 | 
						|
void setup() {
 | 
						|
  // put your setup code here, to run once:
 | 
						|
  Serial.begin(115200);
 | 
						|
  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);
 | 
						|
  }
 | 
						|
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
void loop() {
 | 
						|
  // for (int i = 0; i < 18; i++) {
 | 
						|
  SimpleExpressions.writeMouth("cross", 30, 0, 0);
 | 
						|
  //Serial.println(i);
 | 
						|
  delay(1000);
 | 
						|
  SimpleExpressions.writeMouth("hook", 0, 30, 0);
 | 
						|
  delay(1000);
 | 
						|
  SimpleExpressions.writeMouth("leftarrow", 0, 15, 30);
 | 
						|
  delay(1000);
 | 
						|
  SimpleExpressions.writeMouth("rightarrow", 0, 15, 30);
 | 
						|
  delay(1000);
 | 
						|
  //}
 | 
						|
}
 |