06 October 2019

Wheel of Emotions: Where All Emotions Are Out Of Control!






Everyone has days where they feel a variety of mixed emotions. My project shows those emotions and how randomly they change in the moment. People can go from being really happy to being afraid and from being cool to feeling like their head will explode within minutes or seconds.


Materials Used: 

Servo 
Command Strip 
Printed Objects on Paper 
Uno R3 
Arduino 
Trifold Science Board




#include <Servo.h>
Servo myservo; // create servo object to control a servo
// twelve servo objects can be created on most boards\\
void setup() {
myservo.attach(9); // attaches the servo on pin 9 to the servo object
}
void loop() {
myservo.write(random(0, 180));
delay(3000);
}
view raw gistfile1.txt hosted with ❤ by GitHub

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.