Page 1 of 1
Halloween Skeleton
User-Contributed Project
This project guide is not managed by MAKE staff.
Create the ultimate skeleton Halloween decoration.
- Author: conorm125
- Difficulty: Moderate
In this guide we use a Halloween skeleton mask, an Arduino Duemilanove, a servo and some LEDs to create the ultimate skeleton Halloween decoration.
Relevant parts
- Arduino Duemilanove
- Servo (generic)

- Breadboard kit
- Halloween mask, solid plastic
- LEDs
- View:
- Paginated
- Full width

Edit Step 4 ¶
Now plug your Arduino in and type this code:
// THIS IS FOR NO LEDs. #include <Servo.h> Servo myservo; // create servo object to control void setup() { myservo.attach(9); // attaches servo to pin 9 } void loop() { myservo.write(90);//Degree 1 to 180 delay(1000); //Time in milliseconds myservo.write(180);//Degree 1 to 180 delay(1000); //Time in milliseconds myservo.write(90);//Degree 1 to 180 delay(1000); //Time in milliseconds }
This guide has been completed 1 time.
Page 1 of 1
Comments 
Comments are onturn off
No comments.
