DIY Arduino based Heat shrink Tube cutting Machine | Arduino project

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 ก.ย. 2024
  • $2 for 1-4 Layer PCBs, sign up to get $18 new user coupons: jlcpcb.com/IYB​
    Hey guys this time I have made a heat shrink tube cutting machine, heat shrinks are frequently needed in small length, manually cutting them is to boring job so I build this mini machine it can cut heat shrink of dia 2mm to 8mm in any length and quantity, user just have to insert data from HMI and need to press start so this machine automatically start cutting heat shrink tube.
    #Arduino_project
    Component used in this project.
    1. Custom PCB
    2. Arduino Nano
    3. A4988 Stepper driver
    4. High torque stepper motor
    5. Nema 17 stepper motor
    6. some ball joint rod
    7. 8mm smooth rod
    8. SC8UU linear bearing
    Arduino code :
    github.com/san...
    HMI code :
    github.com/san...
    3D Files :
    pinshape.com/i...
    Multipurpose PCB :
    oshwlab.com/sh...
    • This PCB is all you ne...
    💻visit for more projects :-
    👉 / mrinnovative01
    👉 electricdiylab....
    👉 FB page :- / innovativemr This video is made for entertainment purposes only. Please use judgment, care, and precaution if you plan to replicate. WhatsApp for custom projects +91 7600079068

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

  • @HyperspacePirate
    @HyperspacePirate 3 ปีที่แล้ว

    I'm a simple man - I see Mr. Innovative video, i click Like button.

  • @wanglydiaplt
    @wanglydiaplt ปีที่แล้ว

    Ages ago I made a terribly complicated all-machined DIN rail cutting machine; I like your design philosophy better with your mix of printed and laser cut pats. Well done!

  • @TheRealStructurer
    @TheRealStructurer 3 ปีที่แล้ว +3

    Cool machine! In next version you could modify your code so it pushes our the last cut piece and then retract the tube so you don’t have to pull out that last piece ( or pieces if U cut short ones ). And maybe have a safety cage for the blade when not showing how it works 😎 Keep ‘‘em coming! [Edit] Subscribed 👍🏻

  • @nono_25
    @nono_25 3 ปีที่แล้ว +8

    Great vidéo, can you make a vidéo about your screen please and how to programe them

  • @juskim
    @juskim 3 ปีที่แล้ว +5

    This is an excellent project! Do you have any plans to make it communicate via USB serial?

  • @someadvids5655
    @someadvids5655 3 ปีที่แล้ว

    ffs, nice one chap, great vid i love all these, but i wanted to make an heat shrink cutter about 2 years ago when i came accross some wire cutting vids! nice one chap keep up the good work! peace all

  • @petermuller608
    @petermuller608 2 ปีที่แล้ว

    Such an elaborate tool for a seemingly mundane task - loving it xD

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

      I cut hundreds of heat shrink tubing at work, to my use it won't be mundane. :)

  • @NathanielHatley
    @NathanielHatley 3 ปีที่แล้ว

    I liked your background music selection. Great video!

  • @makers_lab
    @makers_lab 3 ปีที่แล้ว +1

    Love this, and the attention to detail like the end caps for the metal rails. Wondered if it does a feed with no cut when done to push the last piece out, and then retract again?

  • @GrumpyHeadDesigns
    @GrumpyHeadDesigns 2 ปีที่แล้ว +1

    Great idea! Would be nice for a BOM and maybe some Amazon links? Also missing stl for the nextion stand.

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

    Great video! What is this black tape you are using to make the friction better (I guess)?

  • @billfield8300
    @billfield8300 3 ปีที่แล้ว

    Nice clean build. Respect!

  • @danimieghem
    @danimieghem 3 ปีที่แล้ว

    nice project... opens up possibilities to other similar mini machines.

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

    Uaooo, que buen proyecto, te felicito.
    Mira, yo quiero hacer una maquina parecida que sea capaz de pelar cable, es decir quitar la parte plastica para que queje solo el cobre, pero que pueda recibir cables de diferente calibre y que pueden ser trozos de 30 cm hasta 5 metros, sera que se puede hacer
    Gracias por la colaboracion

  • @adambeedle
    @adambeedle 3 ปีที่แล้ว

    That’s an incredible idea nice work!

    • @robotechzone
      @robotechzone 3 ปีที่แล้ว

      th-cam.com/video/hvQyl3aCCeg/w-d-xo.html

  • @YooProjects
    @YooProjects 3 ปีที่แล้ว

    Super professional job man :))

  • @SerajEmad
    @SerajEmad ปีที่แล้ว

    Can't you connect the cutter directly to the servo motor? That will make it much simpler

  • @markeilertsen6619
    @markeilertsen6619 3 ปีที่แล้ว +1

    I really love all your projects. You inspired me to make my own machine that feeds pieces of wood for cutting. I used a hybrid stepper motor with its own feedback and the accelStepper library to control the acceleration and deceleration of the motor. Unfortunately I still get some slip between the driver rollers and the material. Any thoughts on how to overcome this?

    • @MrInnovative
      @MrInnovative  3 ปีที่แล้ว +1

      can't say much without seeing any thing you can work on grip of roller or best option to over come such small slip by separating encode feedback from motor to directly mount encoder with a dummy wheel touch to material so encoder will give count only if actually material slides no matter how much motor slip it will stop only when material pushed to the given length

    • @markeilertsen6619
      @markeilertsen6619 3 ปีที่แล้ว

      @@MrInnovative I have included a separate encoder as you suggested and I am currently working to get the code working. I have to get a level shifter to work all my LS7366R to my Arduino Due. What I’m trying to wrap my head around is how to control the motor (steps, maybe speed) while reading the encoder for position.

    • @gedr7664
      @gedr7664 3 ปีที่แล้ว

      @@markeilertsen6619 Drive the motor with a certain speed until you get close to the desired encoder count
      Something like
      direction = 1;
      while(current_position != desired_position) {
      motor.set_speed(10 * direction);
      }
      You could make this more fancy by slowing down when you are close to the desired position

  • @splendensregan5270
    @splendensregan5270 3 ปีที่แล้ว

    Good! Now, what about a wire cutting and bending machine for breadboards?

  • @Khang-yh3hf
    @Khang-yh3hf ปีที่แล้ว

    How to calculate the pulse for the motor winding the wire in length?

  • @adifahlun3290
    @adifahlun3290 3 ปีที่แล้ว

    Wow amazing!!.
    sir, make a simple book scan machine, please.

  • @sivanesanrajamanickam3645
    @sivanesanrajamanickam3645 2 ปีที่แล้ว

    Hi Mr.Innovative... can you pls make automation on card counting machine... Which is used to count visiting cards...

  • @VarunClotux
    @VarunClotux 3 ปีที่แล้ว

    can u tell how to make blind joint in these aluminium extrusion

  • @SameerExperiment
    @SameerExperiment 3 ปีที่แล้ว +1

    Really you are great 🥰🥰🥰

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

    Where do you get the aluminum tubing? Thanks!

  • @mostrandolaverdad8934
    @mostrandolaverdad8934 3 ปีที่แล้ว

    Very interesting that I make a project of a homemade embroidery machine with Arduino since it would be quite an achievement and sought information and there is very little I would appreciate it very much

  • @priteshsaha1762
    @priteshsaha1762 3 ปีที่แล้ว

    Sir can you tell us how to get all parts which are used in this project like motor shaft gears etc.... Please share any link or online shopping address by which we can purchase all parts....🙏

  • @on3nkj4v42
    @on3nkj4v42 ปีที่แล้ว

    Need idea to make nickel strip cutting machine

  • @1ce_Cubeofficial
    @1ce_Cubeofficial ปีที่แล้ว

    Pls, build diy cigaret stuffing...

  • @Oshan_Dissanayaka
    @Oshan_Dissanayaka 2 ปีที่แล้ว

    Wow! Great Video Bro!!! Thanks...

  • @justmythinks7454
    @justmythinks7454 3 ปีที่แล้ว

    You are a real innovater 😘

    • @robotechzone
      @robotechzone 3 ปีที่แล้ว

      th-cam.com/video/hvQyl3aCCeg/w-d-xo.html

  • @felipro1402
    @felipro1402 3 ปีที่แล้ว

    Hi! Do you have any ideas of projects with Arduino in the music and acoustic field? Thank you

  • @electronic7979
    @electronic7979 3 ปีที่แล้ว +1

    Very good 👏

    • @robotechzone
      @robotechzone 3 ปีที่แล้ว

      th-cam.com/video/hvQyl3aCCeg/w-d-xo.html

  • @shadowtalker117
    @shadowtalker117 ปีที่แล้ว

    hello, unfortunately it is impossible to log into the website to download the pcb file. is there another way to get it?

  • @Unusadunum
    @Unusadunum 3 ปีที่แล้ว +2

    если поставить второе лезвие, которое будет перевернуто в другую сторону, то можно ускорить процесс нарезки, вверх, вниз, вверх, вниз...

    • @Pubvoice
      @Pubvoice 3 ปีที่แล้ว +1

      Как по мне то эта конструкция была сделана больше на зрелищность, чем на функционал.

  • @jackhumphrey2141
    @jackhumphrey2141 2 ปีที่แล้ว

    what display are you using with this peoject?

  • @alessandrovichi761
    @alessandrovichi761 3 ปีที่แล้ว

    Very good project

  • @renatoeljuga2462
    @renatoeljuga2462 3 ปีที่แล้ว

    Dal would like to create a machine to order for the purpose I need. It would work to give you a description.

  • @skorciaasaelmusicoofficial
    @skorciaasaelmusicoofficial 2 ปีที่แล้ว

    Hello MrInnovate , a question...Where can I get the machine shown in the video?

    • @manmangy
      @manmangy 2 ปีที่แล้ว

      You will never get. It is jplpcb sponsored programmes. . These people are dummy. They just assembles things. that is all

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

    Dear friend, How can I buy one of this machines its exactly what I need please contact me

  • @vinayakraj1487
    @vinayakraj1487 ปีที่แล้ว

    How do get this machine in INDIA

  • @MyOwntuahur
    @MyOwntuahur 3 ปีที่แล้ว

    Nice projects.. love it

    • @robotechzone
      @robotechzone 3 ปีที่แล้ว

      th-cam.com/video/hvQyl3aCCeg/w-d-xo.html

  • @Drxxx
    @Drxxx 3 ปีที่แล้ว

    great video!

    • @robotechzone
      @robotechzone 3 ปีที่แล้ว

      th-cam.com/video/hvQyl3aCCeg/w-d-xo.html

  • @اردوينوببساطة-ظ8ر
    @اردوينوببساطة-ظ8ر 3 ปีที่แล้ว

    hello
    can you make 3d filament maker machine???

  • @taipanadf
    @taipanadf 3 ปีที่แล้ว

    Super work!!!

    • @robotechzone
      @robotechzone 3 ปีที่แล้ว

      th-cam.com/video/hvQyl3aCCeg/w-d-xo.html

  • @imranimranibrahim8716
    @imranimranibrahim8716 3 ปีที่แล้ว

    Very good very good

  • @inlywang8157
    @inlywang8157 3 ปีที่แล้ว

    Very good

  • @vijykarthik
    @vijykarthik 3 ปีที่แล้ว

    I have a similar application. Would you be able to work with me to build similar machines ?
    I am in Canada.

  • @sathishapoojary5855
    @sathishapoojary5855 3 ปีที่แล้ว

    Good...👍

  • @serdarcal
    @serdarcal 3 ปีที่แล้ว

    tebrikler bro👍

  • @arctikbear
    @arctikbear 2 ปีที่แล้ว

    Cool!! But why????

  • @TheErixcode
    @TheErixcode 3 ปีที่แล้ว

    software setup?? , wire map?

  • @Jashwanthreddy317
    @Jashwanthreddy317 3 ปีที่แล้ว

    Super

  • @princevishwakarma2561
    @princevishwakarma2561 3 ปีที่แล้ว

    Sir your project is occem sir can you make envelope paper folding machine

  • @alieserli4182
    @alieserli4182 3 ปีที่แล้ว

    Nice

  • @deepakchaudhary3647
    @deepakchaudhary3647 3 ปีที่แล้ว

    Awesome👍👍👍

    • @robotechzone
      @robotechzone 3 ปีที่แล้ว

      th-cam.com/video/hvQyl3aCCeg/w-d-xo.html

  • @ravindranathaan1179
    @ravindranathaan1179 ปีที่แล้ว

    I want one peice

  • @digital945
    @digital945 3 ปีที่แล้ว

    Beauty

  • @SameerExperiment
    @SameerExperiment 3 ปีที่แล้ว +1

    Happy Engineer's Day

  • @siffar
    @siffar ปีที่แล้ว

    Which HMI is this ?

  • @DPTech_workroom
    @DPTech_workroom 3 ปีที่แล้ว

    👍

  • @_munna_
    @_munna_ 3 ปีที่แล้ว

    👌👌👌👌👌

  • @EdwardChew
    @EdwardChew 3 ปีที่แล้ว

    haha well done!

  • @جمالمحمدالبسطاوى
    @جمالمحمدالبسطاوى ปีที่แล้ว

    ارجو شراء هزهى المكنه

  • @magic_man4
    @magic_man4 3 ปีที่แล้ว

    👏👏👏

  • @ashernajmi
    @ashernajmi 3 ปีที่แล้ว

    Cost pl.

  • @mechatronics_m
    @mechatronics_m 3 ปีที่แล้ว

    It is very very very small automated factory lol😂

  • @prathameshraikar5428
    @prathameshraikar5428 3 ปีที่แล้ว

    🔥🔥💯💯

    • @robotechzone
      @robotechzone 3 ปีที่แล้ว

      th-cam.com/video/hvQyl3aCCeg/w-d-xo.html

  • @gamebox-13
    @gamebox-13 3 ปีที่แล้ว +1

    Пилить болгаркой на токарном - это кощунство!

  • @Premiumpodcast
    @Premiumpodcast 3 ปีที่แล้ว

    Wer kann mir denn so eine Maschine hier gegen Bezahlung bauen?

  • @Premiumpodcast
    @Premiumpodcast 3 ปีที่แล้ว +1

    Who could built me this machine for good payment?

  • @vijayur9414
    @vijayur9414 3 ปีที่แล้ว

    Package machine

  • @m.b.anjaneyulu
    @m.b.anjaneyulu 3 ปีที่แล้ว

    Hi bro

    • @m.b.anjaneyulu
      @m.b.anjaneyulu 3 ปีที่แล้ว

      Hi Mr.Innovative

    • @m.b.anjaneyulu
      @m.b.anjaneyulu 3 ปีที่แล้ว

      Thanks for your reply bro

    • @m.b.anjaneyulu
      @m.b.anjaneyulu 3 ปีที่แล้ว

      Reply means a lots of support
      Thanks a lot for supporting me bro

  • @attractions2025
    @attractions2025 3 ปีที่แล้ว

    like

  • @williamhuang5329
    @williamhuang5329 3 ปีที่แล้ว

    Hanzhen harmonic driev gear , robot arm gear , over 30 years experience

  • @bestofluck1388
    @bestofluck1388 3 ปีที่แล้ว +1

    Same Vedio . th-cam.com/video/kGthVwdLqko/w-d-xo.html

  • @Gamogamer
    @Gamogamer 3 ปีที่แล้ว

    I think most of your machines are really cool but I can rarely see them being actually useful to build and take up space tho sadly. Altho I like them

    • @Premiumpodcast
      @Premiumpodcast 3 ปีที่แล้ว

      ich brauche so eine maschine. wer kann mir die bauen?

  • @sergeyk856
    @sergeyk856 2 ปีที่แล้ว

    Idea is definitely good. But price of used materials is not corresponding to task.

  • @asdwee4444
    @asdwee4444 3 ปีที่แล้ว +1

    Very good idea, thanks for sharing. What I really appreciate is ,You always share the code an part list of your projet

    • @robotechzone
      @robotechzone 3 ปีที่แล้ว +1

      th-cam.com/video/hvQyl3aCCeg/w-d-xo.html

    • @Premiumpodcast
      @Premiumpodcast 3 ปีที่แล้ว

      wer kann mir denn so eine Maschine bauen?

  • @electricbase1930
    @electricbase1930 3 ปีที่แล้ว

    Best indian tech guy on youtube