Flat Iron Fluffy Marshmallow Machine

by CerealWithASpork in Circuits > Arduino

43 Views, 0 Favorites, 0 Comments

Flat Iron Fluffy Marshmallow Machine

881B5ED8-A2AF-499C-83E7-CCD405FDE191.JPG
304392EB-472A-4466-B55F-9633C116C953.JPG
3E4E12A0-5A15-437C-A3E6-0EED90118E71.JPG

Do you want a snack or dessert, but aren't sure what to do? Do you have marshmallows, stale or fresh, lying around, but no materials to make s'mores? Then this is the project for you.


This project will teach you how to turn a flat iron into a marshmallow machine.

There is an option to create an Arduino timer with a light, but it isn't required.

Supplies

For S'more maker

  1. Flat Iron (dollar store or thrifted, something you can easily take apart)
  2. Large can (we used an 18.5 ounce)
  3. Duct Tape
  4. Linerless rubber splicing tape
  5. An old oven mitt for insulation

Tools

  1. Screwdriver
  2. Drill (or some other means to cut through the top of the can)
  3. Scissors

For Arduino timer (optional)

  1. Arduino nano + connecting cables
  2. 4 male-to-male wires
  3. 330 Ω resistor
  4. An LED bulb
  5. Circuit Breadboard

Disassemble the Flat Iron

Screenshot 2024-12-17 at 1.57.57 PM.png

Using a small screwdriver, take the flat iron apart. Be sure to keep the internal electronics intact and connected to the heating pieces. Then feel free to throw out/repurpose all parts except the internal electronics and heating pieces.

Drill/Cut the Can

Screenshot 2024-12-18 at 1.19.08 PM.png

Use a drill or other cutting implement to cut two holes in the bottom of the can opposite each other, each large enough for the heating pieces to be inserted into. Use duct tape to smooth over sharp edges.

Add Heating Elements

Screenshot 2024-12-18 at 1.18.51 PM.png
Screenshot 2024-12-18 at 1.17.11 PM.png
Screenshot 2024-12-18 at 1.17.29 PM.png

Insert the heating elements into the top of the can. Add duct tape to the top to keep the things in place.

Secure Heating Elements

Screenshot 2024-12-18 at 1.18.08 PM.png

Use the linerless rubber splicing tape to secure the heating elements at the bottom. Be sure to cover the parts that will get the most hot

Wire the Breadboard (Optional)

IMG_3654.jpg
IMG_3652.jpg
IMG_3653.jpg

Wire the breadboard and Arduino nano in this configuration. This will create the light that indicates the timer.

Upload the Code (Optional)

This code will be a timer, and will cause the light on top to light up.


int Marshmallow = 0 ;

void setup() {

pinMode(3, OUTPUT);

pinMode(2, INPUT);

}


void loop() {

Marshmallow = digitalRead(2) ;



if (Marshmallow == HIGH) {

digitalWrite(3, HIGH) ;

delay(180000);

digitalWrite(3, LOW);

delay(1000);

digitalWrite(3, HIGH);

delay(1000);

digitalWrite(3, LOW);

delay(1000);

}


else {

digitalWrite(3, LOW);

}

}

Cut the Mitt

7ACFBA41-D5BB-4DDA-B3A1-F35DD706DBBB.JPG

Cut the oven mitt in half horizontally, just under the cuff.

Sew the Edges (Optional)

C6733B3A-245F-4163-82A2-2EA4F7D18856.JPG
6BA1C7F8-B834-4B14-B7B2-706EF73E369D.JPG
FBA37F15-494B-4B40-8D18-7438E2F6F674.JPG

Sew the edges to the cut cuff closed to prevent fluff from falling our and contaminating and food.

Place Around the Device

DBD7529E-B626-416E-92C9-6A83AE916DA7.JPG
AE309D8C-A989-4F62-ABDF-F581BD26A3F3.JPG

Place the cuff upright around the can, with the cut edge on the bottom.

Add Arduino Timer (Optional)

68CD5CE4-37BC-4D02-89DE-577441436FD9.JPG

Tuck the Arduino into the cuff, or secure it in some other way.

Secure the Cord

C803E43D-CD7B-4B2B-B3AE-AFAE1C493322.JPG

Secure the cord so it won't pull the electronics off. We tied it through the oven mitt loop, then secured the connection with the linerless rubber splicing tape.

Give It Personality

8576072E-C6B5-456A-AC22-25950FB2B6BB.JPG
A5D17F66-6EE4-4C31-9C6F-9E719813F64A.JPG

Feel free to decorate your marshmallow machine. We added a ribbon, which helps secure the Arduino timer on the side, and googley eyes, which give it personality.

Make Fluffy Marshmallows

BC5E3B67-5103-4263-BCD3-1CBD9FD16E3B.JPG
52A60232-30DA-4A4C-8938-6DFAE6603567.JPG

Plug it in, and put in on top of a marshmallow to make it fluffy. If you made the Arduino timer, plug that in as well and press the button. If the flat iron heating components are shorter than the can, you may want to raise the marshmallow up.