15.2 C
Canberra
Sunday, March 29, 2026

Bringing the Helmet to Life


You printed it, now make it spring to life. Dive into these directions to make your Iron Man helmet as lifelike as doable.

Posted on February 3, 2016

by

Tyler Anderson

Halloween was coming and I wanted a dressing up. I did not wish to go purchase one thing and I did not wish to put on something lame. With the brand new WASP printer that simply arrived in our showroom, I wished to make the most of its energy. Lastly, a buddy recommended Iron Man. It was excellent, however I had each intention of doing it proper. 

The helmet mannequin was designed by drumguy560 on the Reproduction Prop Boards. I did a variety of digging and though this mannequin has been round some time, it nonetheless appears to be the group favourite for 3D printing. It additionally has some glorious element within the mouth space. I am reposting the recordsdata right here (with permission) on your comfort.

It is probably not apparent the place the smaller items go, so I additionally included a Blender file of the totally assembled helmet so you possibly can see the way it all matches collectively.

I printed the Iron Man helmet with MatterHackers’ PRO Collection Pink PLA and customary sequence Gold PLA. I like the way in which the gold seems to be; it is semi-translucent, so you possibly can see the infill sample (image would not actually seize this). The crimson items have been printed on an Ultimaker 2 at 0.1 mm layers, and the gold ones have been completed on a WASP 40 70 at 0.2 mm layers. I estimate the entire print time at about 120 hours. The print time was a bit longer as a result of positive layers. We additionally had so as to add a variety of mandatory help materials, which additionally elevated print time.

In some unspecified time in the future I intend on portray every thing with Rustoleum, however for the aim of exhibiting off the capabilities of 3D printing, the helmet will stay unpainted for now.

Most of it’s held along with superglue, nonetheless there was not a very good floor for this between the highest and center crimson items. I ended up utilizing a soldering iron on low warmth to weld them collectively on the within.

The default scaling of the helmet is a bit small for my head, and my head will not be huge. I printed it at 100% and I can not get it on with out eradicating the jaw. As soon as inside, although, it is fairly roomy. I take this as incentive so as to add servos for the jaw and face plate.

The face plate doesn’t match completely across the prime. I think that the WASP was probably not calibrated nicely. I used our temperature managed vacuum oven to heat it up simply previous the glass transition temperature of PLA (65 C). Then I bent it into form and used tape to carry it in place because it cooled off. It matches completely now.


This was actually more durable than it ought to have been. I do know that lots of people have completed this earlier than, so I searched and checked out a variety of totally different approaches. I wasn’t actually happy with the present designs folks had revealed, and the great ones appeared to have been stored to themselves. In the long run I made a decision to provide you with my very own factor based mostly on a 4 bar linkage. This is able to let me get the exact movement I wished.

Going into this, I knew roughly the place I wished the arms to go. I made a decision to place the motor beneath the middle piece on the brow, like this man did. This can be a great place for protecting the entrance arms hidden. The helmet has two slots alongside the highest which have been clearly meant for the face plate mechanism. The again arms may undergo there. I lower these out utilizing a Dremel. I all the time prefer to benefit from the pure options of the prop. This makes it extra sensible. I’ve discovered that when artists design issues like this, they normally have some thought of how the piece would really work, even when they do not flesh it out totally.

Motors, Arms, and Stuff

The motor is a normal HiTec passion servo that I bought out of the storage. I designed this factor to carry it, together with the arm on the opposite facet. The joints are 623ZZ ball bearing and M3 screws.


These are the again arms, which match beneath the slots within the helmet.


I knew it will take a few iterations to get the lengths of the arms proper, and the positions of all of the joints, so I quickly fitted every thing along with sizzling glue. What I didn’t understand is that sizzling glue and PLA stick to one another REALLY WELL (it is because the new glue partially melts the PLA).

4 Bar Linkage

By intensive analysis (watching the film rather a lot) I decided that the faceplate ought to transfer out a bit bit first, then flip up and again. The trick to getting the correct movement is to determine the right lengths of the arms and the right positions of the joints.

I took footage of the helmet with the faceplate in 3 totally different positions; closed, open, and midway open. Then I introduced the photographs into GIMP and overlayed them on prime of one another. This was the end result:


In SolidWorks, I traced over the composite picture and marked the place the joints could be in all three positions. This totally outlined the arcs and gave me the size of the arms and the centerpoints. It additionally helped that I had already arrange the entrance arm (since I knew the place the motor could be and the place it had to hook up with the face).


I refined it a bit extra and got here up with the next dimensions for the 4 bars:

Helmet (g)

32.31 mm

Face (h)

72.31 mm

Entrance Arm (a)

70.28 mm

Again Arm (b)

63.12 mm

Placing all of it collectively

That is the top end result. Every little thing is sizzling glued in place contained in the helmet.


The half that the motor was glued to was form of flimsy, as a result of the vent was proper there. So I took a Craftypen and added some additional materials round there to strengthen it. It’s also possible to see the chamfers on the entrance of the slots to assist information the arms in.


The helmet was having hassle opening generally. This was as a result of Grashof situation. The entrance arms would attempt to go a technique, however the again arms would attempt to go the opposite method and it will get caught. This was fastened by including some weight to the entrance of the face (a bolt), so it will are likely to tilt in the fitting course.


The entrance arms are what prevents it from going again additional. I intend on enhancing this in some unspecified time in the future  by including a bend to them, so they do not hit the highest.

The setup I’ve proper now’s largely for testing. It is simply an Arduino Mega 2560, with a toggle swap and a 5V PSU. For sensible use, I am going to want one thing extra compact and everlasting. However, for now, this works.


That is the Arduino code to make use of for the toggle swap:

#embody

Servo faceServo;

void setup(){
 faceServo.connect(9);  // Servo PWM     - Pin 9
 pinMode(40,INPUT);    // Toggle Change - Pin 40
}

void loop(){
 if(digitalRead(40)){
   faceServo.write(45);
 }else{
   faceServo.write(180);
 }
}

And that is one other sketch that permits you to set the servo angle over the serial port:

#embody

Servo faceServo;

int command =0;
int angle =0;

void setup(){
 faceServo.connect(9);  // Servo PWM - Pin 9
 Serial.start(9600);
}

void loop(){
 if(Serial.out there()){
   angle =Serial.parseInt();
   if(angle <=180and angle >=0){
     faceServo.write(angle);
     Serial.println("Transferring");
   }else{
     Serial.println("ERROR");
   }
 }
}
  • PET as an alternative of PLA. Extra versatile, extra sturdy, and would not soften on a sizzling day. 

  • Bigger. The default scaling is a bit too small. I’ve to take away the jaw to get it on my head, and even then its a decent squeeze. I would not have an enormous head.

  • Folding elements in again, like this man did, would make it rather a lot simpler to get on and off.

  • Transfer one set of arms to facet temple space as an alternative of the brow. I must redesign every thing so as to do that, and the arms would not be as hidden, however it will remedy a variety of issues it has with the movement. It additionally would match higher with the unique artist’s intentions (there’s a bolt proper there).

 

Whether or not you go off the plans of Model 1 or 2, good luck and completely satisfied printing!

For extra helmet enjoyable, try our CES response video to our venture.

Related Articles

LEAVE A REPLY

Please enter your comment!
Please enter your name here

[td_block_social_counter facebook="tagdiv" twitter="tagdivofficial" youtube="tagdiv" style="style8 td-social-boxed td-social-font-icons" tdc_css="eyJhbGwiOnsibWFyZ2luLWJvdHRvbSI6IjM4IiwiZGlzcGxheSI6IiJ9LCJwb3J0cmFpdCI6eyJtYXJnaW4tYm90dG9tIjoiMzAiLCJkaXNwbGF5IjoiIn0sInBvcnRyYWl0X21heF93aWR0aCI6MTAxOCwicG9ydHJhaXRfbWluX3dpZHRoIjo3Njh9" custom_title="Stay Connected" block_template_id="td_block_template_8" f_header_font_family="712" f_header_font_transform="uppercase" f_header_font_weight="500" f_header_font_size="17" border_color="#dd3333"]
- Advertisement -spot_img

Latest Articles