3D Printed Rotating Display Stand | Showcase Your 3D Prints

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 ก.พ. 2024
  • Show off your 3D prints in style with this rotating display table! This unique #3dprinting design will add a touch of modernity to your collection and make your prints stand out. Perfect for showcasing your creations at events or in your home. Print your own today with this easy-to-follow tutorial!
    Download Rotating Table 3D Model - www.thingiverse.com/thing:481...
    Parts required for this project:
    Arduino Nano: amzn.to/430LsW3
    Breadboard: amzn.to/49RwiVe
    ULN2003 Driver Board: amzn.to/3UVeZ1p
    28BYJ-48 Stepper Motor: amzn.to/3P2VCj2
    Jumper Wires: amzn.to/3P2clTI
    608 Bearings: amzn.to/48zXE1e
    5v Power Module Jack:
    5V 2A Power Supply Adapter: amzn.to/3IidhQ4
    cool 3d prints
    3D Printed rotating display stand
    3d printed rotating display
    3d printer
    music used in video :
    Morning Station by Tokyo Music Walker
    / user-356546060
    Creative Commons - Attribution 3.0 Unported - CC BY 3.0
    Free Download / Stream: bit.ly/morning-station
    Music promoted by Audio Library • Morning Station - Toky...
    Message me if you have a unique 3d design idea, I will help you😊
    #3dprinting #shorts #3dprintingideas #Innovation #Technology #Engineering #Creativity #Filament #3dprintingideas #youtube
  • บันเทิง

ความคิดเห็น • 17

  • @user-yr7bf1qj6n
    @user-yr7bf1qj6n หลายเดือนก่อน

    Wow super very good 👌🏻

  • @Dartheomus
    @Dartheomus 2 หลายเดือนก่อน +1

    useful model, but wow does it hurt when I see you leave a breadboard in the model! gotta raise that bar just a little! :)

  • @Reds3DPrinting
    @Reds3DPrinting 2 หลายเดือนก่อน

    I havent been notified about your videos in so long bro! I always love your content.
    Nice to see youve upgraded from your bedslingers! :P

    • @3DELWORLD
      @3DELWORLD  2 หลายเดือนก่อน

      Have you turned on bell icon😅? Glad you liked the content😊👍

    • @Reds3DPrinting
      @Reds3DPrinting 2 หลายเดือนก่อน

      @@3DELWORLDI will now good though man I honestly didnt even think of that Thank you

  • @kdt85
    @kdt85 2 หลายเดือนก่อน

    Cool model, i wanted to make one with a 555 pwm or something but i like the microcontrollers idea, you could program it to go back and forth in interesting ways as well as speed, if you used a pi pico w or something with WiFi/Bluetooth you could control if via a phone or browser

    • @3DELWORLD
      @3DELWORLD  2 หลายเดือนก่อน

      Sounds interesting!

  • @The3DPrintingGrandad
    @The3DPrintingGrandad 2 หลายเดือนก่อน

    Where did you get the little robot in your videos?

  • @user-wo2fk2zt8p
    @user-wo2fk2zt8p 2 หลายเดือนก่อน

    非常に素晴らしい👏

    • @3DELWORLD
      @3DELWORLD  2 หลายเดือนก่อน +1

      気に入っていただけてよかったです😊👍 ( glad you liked it 😊👍)

  • @sumeyraakalin9167
    @sumeyraakalin9167 หลายเดือนก่อน

    I need this soldering jig, i could not find on the internet, can you share it?

    • @3DELWORLD
      @3DELWORLD  หลายเดือนก่อน +1

      Yes, It's actually Helping Hands: www.printables.com/model/741057-fully-3d-printable-helping-handspcb-holder

    • @sumeyraakalin9167
      @sumeyraakalin9167 หลายเดือนก่อน

      Thank you very much @@3DELWORLD

    • @3DELWORLD
      @3DELWORLD  หลายเดือนก่อน

      @@sumeyraakalin9167 Glad it helped😊👍

  • @donipereira7
    @donipereira7 2 หลายเดือนก่อน +2

    Please, where is the code?

    • @3DELWORLD
      @3DELWORLD  2 หลายเดือนก่อน +1

      If you want this code through email then let me know!
      Select Arduino Nano and port in Arduino IDE software. Here is the code:-
      // wait for a single step of stepper
      int delaytime = 2;
      // ports used to control the stepper motor
      // if your motor rotate to the opposite direction,
      // change the order as {4, 5, 6, 7};
      int port[4] = {4, 5, 6, 7};
      // sequence of stepper motor control
      int seq[8][4] = {
      { LOW, HIGH, HIGH, LOW},
      { LOW, LOW, HIGH, LOW},
      { LOW, LOW, HIGH, HIGH},
      { LOW, LOW, LOW, HIGH},
      { HIGH, LOW, LOW, HIGH},
      { HIGH, LOW, LOW, LOW},
      { HIGH, HIGH, LOW, LOW},
      { LOW, HIGH, LOW, LOW}
      };
      void rotate(int step) {
      static int phase = 0;
      int i, j;
      int delta = (step > 0) ? 1 : 7;
      step = (step > 0) ? step : -step;
      for(j = 0; j < step; j++) {
      phase = (phase + delta) % 8;
      for(i = 0; i < 4; i++) {
      digitalWrite(port[i], seq[phase][i]);
      }
      delay(delaytime);
      }
      // power cut
      for(i = 0; i < 4; i++) {
      digitalWrite(port[i], LOW);
      }
      }
      void setup() {
      pinMode(port[0], OUTPUT);
      pinMode(port[1], OUTPUT);
      pinMode(port[2], OUTPUT);
      pinMode(port[3], OUTPUT);
      }
      void loop() {
      rotate(100);"

  • @mikken7403
    @mikken7403 2 หลายเดือนก่อน +4

    Too much effort for just a rotation... No need for a stepper motor and on top a microcontroller. A simple geared motor does the trick more efficiently.