Iron Man Gauntlet - Part 1: Electronics Prototype

Поділитися
Вставка
  • Опубліковано 30 лис 2021
  • This is my process for designing and building a project.
    Before anything else, I start with electronics. I figure out which parts I will need and how they will work together. Initial code is written for testing at this stage as well.
  • Розваги

КОМЕНТАРІ • 26

  • @wj625
    @wj625 2 роки тому +8

    After your Mk 5 helmet you have my sub! Can’t wait to see what you come up with next.

  • @mit5499
    @mit5499 2 роки тому

    I check back here all the time just to wait for the moment when you finish this keep doing great things man you a legend

  • @G40bv
    @G40bv 2 роки тому +3

    I'm printing 3 helmets. 2 for my kids and the mk5 for me. It's impressive the work you've put into it, modelling has the instructions. All perfect. Hope to see more projects from you and you've got a new sub. My kids are thrilled with the idea of having the helmet... hard to explain that it takes time to print and build. Thank for your awesome project

    • @BoxandLoop
      @BoxandLoop  2 роки тому +1

      That's awesome to hear! Enjoy

  • @DoctorNOS
    @DoctorNOS 2 роки тому +1

    You always amaze me !!!

  • @falkonfpv
    @falkonfpv 2 роки тому +2

    O Yeah, as I'm working on your mk5 helmet I see this pop up and think I'm going to be very busy lol Thanks for the cool projects

  • @Alamsentosa2786
    @Alamsentosa2786 2 роки тому +1

    Good👍👍

  • @enjiegrows8531
    @enjiegrows8531 2 роки тому +2

    Amazing work! I'm following your helmet build as we speak!

  • @mikajurvanen8219
    @mikajurvanen8219 2 роки тому

    Awesome stuff, I will finish the MK5 helmet in a couple of weeks, so will keep my eyes open for the gloves. You are awesome!

  • @PurpleHelmet
    @PurpleHelmet 2 роки тому +7

    This is great, was wondering how you approach your projects - to me, the sheer scale of everything involved that has to come together just left me thinking where the hell would you start!
    So breadboard out all the req electronics first for proof of concept, then build the mechanics and visuals round that?

    • @BoxandLoop
      @BoxandLoop  2 роки тому +1

      Correct. I want to know which electronics I need to insert and where

    • @khinsi9953
      @khinsi9953 2 роки тому

      Pqqpqpp

    • @ashutoshshilpkar2274
      @ashutoshshilpkar2274 2 роки тому

      @@BoxandLoop sir what is the name of the things

  • @user-xb3qh7iu1g
    @user-xb3qh7iu1g 2 роки тому +1

    👍👍👍

  • @marawanharraz2310
    @marawanharraz2310 2 роки тому +2

    Are you going to make a full tutorial about the electronics and the full build?

    • @BoxandLoop
      @BoxandLoop  2 роки тому +4

      Absolutely

    • @marawanharraz2310
      @marawanharraz2310 2 роки тому +2

      @@BoxandLoop I like your videos so much man, and since I saw you for the first time in Instagram I loved the Iron man helmet and I subscribed and followed instantly, keep the amazing work and thank you for the amazing tutorials

    • @BoxandLoop
      @BoxandLoop  2 роки тому +2

      Thank you for kind words

  • @samuelflorian7369
    @samuelflorian7369 2 роки тому

    hi, did this build get released anywhere yet? im just printing the rest of your mk5 build, thanks for all you do

  • @banane7139
    @banane7139 Рік тому

    hey your mk5 helmet there is one black servo is important not to take the normal sg90 servo or can the 10 servos just be sg90

  • @graysonbilinsky845
    @graysonbilinsky845 2 роки тому

    What are you modeling the helmets with?

  • @tennissport6978
    @tennissport6978 2 роки тому

    I would make carnage head

  • @desmondclyde6835
    @desmondclyde6835 Рік тому

    I want to make a code that lets me move two servos to the same angle with the push of a button (not held). Servos start at 0 degrees, When i press the button (not hold it), both servos move to 90. When i press button again (not hold it), servos move back to 0. Where in my code is it incorrect ?
    #include
    Servo servo1;
    Servo servo2;
    int servoPin =3;
    int servo2Pin=5;
    int servo1Val=0;
    int servo1Status=0;
    void setup() {
    pinMode(servoPin, INPUT_PULLUP);
    pinMode(servo2Pin, INPUT_PULLUP);
    servo1.attach(3);
    servo2.attach(5);
    servo1.write(0);
    servo2.write(0);
    }
    void loop() {
    servo1Val=digitalRead(servoPin);
    if (servo1Val==0){
    if(servo1Status==0){
    servo1.write(90);
    servo2.write(90);
    servo1Status=1;
    }else{
    servo1.write(0);
    servo2.write(0);
    servo1Status =0;
    }
    delay(10);
    }
    }