Vebo1 Well i bought a Predator 1 bio helmet just yesterday casted in fiber glass resin (from Thailand)...I also have to order another batch of 30 dreads from Corey in about 2 - 3 weeks...I am still sculpting the torso ...I do not know if I am doing the armor too or just the body then still take my EVA foam armor. I really think the whole body suit makes a huge difference for the final looking of the costume. Also have to repair a lot of stuff on my costume to make it more realistic and easy to wear (y). I will also begin to sculpt another Yautja head mask .....I sold almost all my molds to a friend here on Predatorium. Now he knows how much efforts and time consuming a costume can be hehehehe :D....I have to animatronic my plasma Cannon as well..... Thanks Vebo1
 
Vebo1 Well i bought a Predator 1 bio helmet just yesterday casted in fiber glass resin (from Thailand)...I also have to order another batch of 30 dreads from Corey in about 2 - 3 weeks...I am still sculpting the torso ...I do not know if I am doing the armor too or just the body then still take my EVA foam armor. I really think the whole body suit makes a huge difference for the final looking of the costume. Also have to repair a lot of stuff on my costume to make it more realistic and easy to wear (y). I will also begin to sculpt another Yautja head mask .....I sold almost all my molds to a friend here on Predatorium. Now he knows how much efforts and time consuming a costume can be hehehehe :D....I have to animatronic my plasma Cannon as well..... Thanks Vebo1
Well at the end of the day it will be worth the blood sweat and tears to produce an awesome piece of art . Stay creative my friend .
 
Hey Vebo1! You work is freaking incredible! Did you have your cannon files up for sale yet? I will gladly pay a chunk of money to own those files. I have around 9 3D printers I'm about to fire up to work on my suit as well. I was hoping you can work something out with me? I, of course, would never share the files. Personal use only :) Looking forward to your progress!
 
Hey thanks eventually I will , but not right now . I wouldn’t even know how to price it because it was insanely expensive to both design it from an excellent 3D modeler and when it was printed from shapeways . I have the mines for sale on there , but still trying to figure a way to recoup without charging a atm and a leg .
 
Hey thanks eventually I will , but not right now . I wouldn’t even know how to price it because it was insanely expensive to both design it from an excellent 3D modeler and when it was printed from shapeways . I have the mines for sale on there , but still trying to figure a way to recoup without charging a atm and a leg .
If you dont mind Pm'ing me id love to come up with some way to help you? :) I'm just looking to help out as best I can before I dive in and eventually design it myself (if i end up having to) :p Im pretty sure there would be enough members on here who'd like to pay for the files and reimburse what you paid?
 
Love the bio work. What was the wiring for the lights to fade in and fade out? Would love to have a flash option set to a button :)
 
Code:
/*
 * PROJECT NAME: FadingLED
 *
 * DESCRIPTION: A DEMONSTRATION FO USING ARDUINO INPUT (EXTERNAL PUSH BUTTON ON PIN 2 TO CONTROL AN OUTPUT (LED ON PIN 9)
 *
 * CREATED BY POVEL (DARKBLUEBIT.COM) IN 2016)
 *
 * */

 //CONSTANT WON'T CHANGE THEIR VALUE
 const int buttonPin = 2;// The number of the pushbutton
 const int ledPin = 9; //led pin
 const int fadingDelay = 50;// speed of the led fade

 //variable will change: (higher value = slower )

 int buttonState = 0;
 boolean fadingState = false;

 void setup(){
  //initialize the led pin as an output
  pinMode(ledPin,OUTPUT);
  //initalize the push button pin
  pinMode(buttonPin, INPUT);
 }

 void loop(){
  buttonState = digitalRead (buttonPin);

//check whether the button was pressed
if (buttonState == HIGH){
  //check led status
  if (fadingState == false){
    // turn on the led
    for(int i=0; i <=255; i += 5){
      analogWrite(ledPin,i);
      delay(fadingDelay);
    }
  }else{
    // turn off the led
    for (int i =255; i>=0; i-=5){
      analogWrite(ledPin,i);
      delay(fadingDelay);
    }
  }
  fadingState = ! fadingState;
}
}
CF26C2A8-F1B9-43F5-919C-8326CC069809.jpeg

CREATED BY POVEL .
Orange wire goes to pin 2 on the Uno
Red wire in the middle of the picture goes to pin 9 on the Uno.
The red (5v)and blue (Gnd)wires at the bottom left are 5v and Gnd to Uno. Sorry should have color match the wire to match breadboard. I know sloppy.470 ohm resistors
 
Last edited by a moderator:
182E2283-BA54-4661-A7F8-FED2B0F32F70.jpeg 0B430D4D-FEF5-4602-95CE-87668261BF8E.jpeg A11A8E20-71BD-4322-845A-829DBD3A7010.jpeg 1A11FB57-5B21-4D75-8111-51A5171F6CE0.jpeg C297D1E3-6822-44C2-BDD2-22E746D21F42.jpeg A68C0913-5ADB-4AB3-BCB6-FA3E34A67661.jpeg 31469B6D-F276-44D1-A553-59668C8A89C3.jpeg 6F16B372-4A50-4879-A696-2C1EDDBDE3AF.jpeg EC467978-0EC8-4635-8F94-3038274CF431.jpeg 79BCECF2-EB7B-4569-8914-9A5CF66A7D8E.jpeg 55BEB80F-F3C1-47C2-9D6D-0A98DA19DE44.jpeg FC0E83B7-2450-4DC6-A88D-5851B4C084B4.jpeg D8D917B9-C9D5-44B3-B6D4-1FD3C6E1311E.jpeg
D2D942AD-00AE-4927-BA22-1F8E59CB5BB0.jpeg

Crunch time . Started the painting process for the gauntlet and foam filling the cheap way , This actually fits super well and snug and fills all the proper spaces . I decided to cut out the hole for the dreads before attaching the foam to the mask, this will also give support when I attempt to paint it .
 
Last edited by a moderator:
The plasma cannon video got me,. I was like WHAT is this!! :) wires and batteries, AMAZING work vebo!! For some WEIRD reason I started to picture an actual PREDATOR putting this thing together :) lol.
 
Back
Top