Raspberry Pi Zombie Carnival Costume
by Innovart Studio in Circuits > Raspberry Pi
556 Views, 0 Favorites, 0 Comments
Raspberry Pi Zombie Carnival Costume
Have you ever felt as if you had butterflies in your stomach? Last carnival day I felt that way....
Like a Walking dead fan, I wanted to do a custom equal to the serie.
I was walking around the city, trying not to find a zombie. Suddenly, I saw Rick, I started to run to him but Rick shot me on the stomach... He thought that I was a zombie.. and unfortunately, I'm going to become one.
If you want to become a zombie, look my steps to do a real injury where people can see through you.
Supplies
Here, you can find all the necessary components to do your own costume of stomach hole. You will make a profound impression to your friends!!
INGREDIENTS
Electronic components
- HDMI cable: http://www.cooking-hacks.com/hdmi-cable-6
- Rapberry Pi model B+: http://www.cooking-hacks.com/hdmi-cable-6
- Pi-camera: http://www.cooking-hacks.com/hdmi-cable-6
- 7" touchscreen: http://www.cooking-hacks.com/hdmi-cable-6
- 5v regulator datasheet: http://www.cooking-hacks.com/hdmi-cable-6
- Polymer lithium ion battery: http://www.cooking-hacks.com/hdmi-cable-6
Make up
- Látex: http://www.funidelia.es/sangre-latex-y-heridas-39...
- Make up: http://www.funidelia.es/sangre-latex-y-heridas-39...
Extra components
- GoPro Chest Mount Harness: http://www.amazon.es/GoPro-Chest-Mount-Harness-c%...
- Bison rifle: http://www.amazon.es/GoPro-Chest-Mount-Harness-c%...
SPECIFIC SKILLS
You don't need high programming, make up or electronic skills. You only need to follow these steps and have patience and creativity to make the wound around the screen.
Introduction
Here, you can find all the necessary components to do your own costume of stomach hole. You will make a profound impression to your friends!!
Hardware
Regarding hardware, we will need 2 devices:
The front screen on which we project everything that the camera records. This display has a control module which we can connect a HDMI cable directly. Raspberry Pi is placed in the rear of the T-shirt and the camera is placed above. To supply the 2 modules, we will use a lithium battery, which will power the system via a voltage converter to 5 volts.
Software
The program is very simple, and you can get it through examples that you can find on the website:
http://picamera.readthedocs.org/en/release-1.8/ind...
Here, you have how to use the camera using python.
First, you have to install the library:
$ sudo aptget install pythonpicamera
*If you have the raspberry updated, you can jump this step, but just in case..
The program is:
import time
import picamera
with picamera.PiCamera() as camera:
camera.resolution = (1920,1080)
camera.hflip = True
camera.vflip = True
try:
except KeyboardInterrupt:
while True:
camera.start_preview()
time.sleep(100)
camera.stop_preview()
pass
The commands 'camera.hflip' and 'camera.vflip' are to rotate the camera, depends on you placed it, this commands would not be necessary. We need to write the command 'time.sleep' and 'camera.stop_preview' because the camera tends to crash without it.
To create the script from the terminal you have to be on pi folder(to be there, you need to use the command cd) . We use the command sudo nano camera.py, we write the program, save it with Ctrl+X and accept it.
To boot to the start, we have to create an autorun file, para ello creamos una carpeta y nos metemos en ella con:
mkdir ./bin
cd ./bin
We create the file sudo nano script_auto_run and write:
#!/bin/bash
# Script to start our application
echo "Doing autorun script..."
sudo python /home/pi/camera.py &
We save the file and make it executable with:
sudo chmod 755 script_auto_run
When it is executable, you have to write:
$ cd /etc/xdg/lxsession/LXDE
$ sudo nano autostart
Down until the last line and write:
@/home/pi/bin/script_auto_run
And that's all folks!! ;)
Make Up
We can use latex applying it on paper placed around the screen to pretend a shotgun wound. Once dry, we should use make up base color skin to make up the whole area. After, you should use red and black paint to decorate the inside of the wound.
We will also use a white T-shirt. We cut 2 holes, one bigger in the front of the T-shirt (a little smaller than the screen) and another behind to put the camera. Later, you can paint the T-shirt with red paint as if you were going to bleed. To the final touch, we will use a toy shotgun.
Final Assembly
We will have to use GoPro harness to hold down the front screen and rear camera connected to the raspberry Pi.
We will also use a HDMI cable to connect the image to both devices and connect the power supply circuit to the two modules.
Photo Gallery
Here you can find some extra photos.
Finally , you just have to install the whole system. You should place the shirt above the screen and use some blood on the shot wound .
I hope you like my costume and you will be the best dead of Halloween night!