That's a pretty good build. He needs to discover electrical tape as a binding wrap, say for the belts. Electrical tape is the most underrated construction material.
I bet you could make a plotter with two popsicle sticks and some dental floss. That is the best way to mount those motors. The plastic ties work great. Thumbs up.
I start making such a small machine and have a question: rather than using a piece of code in Java to send the GCode to the Arduino, maybe it would be easier to use a SD Card on the Arduino. This solve the Java part "problem", and with that you can have a stand alone machine, without the need to link the computer. In all cases, nice job.
What you are suggesting is done all of the time as Arduino devices are used to drive many kids of multi-axis machines, although you may be asking a lot from an Arduino-based device if you want it to work directly with an LCD touch screen as I attempted to do. A Raspberry Pi or equivalent could do all of it for sure, but unless Arduino has seriously upgraded their memory capacity introducing new devices, I don’t know if even the Arduino Mega has enough flash memory to handle the code for the g-code interpreter, card reading routines, stepper control, LCD, and touch interface. Most 4-axis machines, like 3D printers, when using Arduino type controllers will also employ an external driver board requiring fewer pins on the Arduino for full control. Instead of managing stepper control using a pin for each phase, the Arduino can use one pin for direction, and another for the step pulse for each axis, leaving others available for enable, micro-stepping, holding current reduction, depending on the driver board features. But this is why many multi-axis machines, like 3D printers, use a dedicated LCD interface, freeing up memory space and CPU cycles for lower-spec devices. The Arduino-based units are really pushed to their limits as real-time processing demands are pretty harsh, which is why the 16MHz versions are preferred for this kind of duty. And remember also that the micro-controller must read and interpret g-code if it is to run as an intelligent controller, and not just a bus-coupler being driven by some other system. I have a Mega set up with a 3” LCD touch screen and micro-sd card reading functions, leaving little memory available for much other practical functionality. This setup would have required one Mega dedicated to the LCD for HMI functions (assuming the Mega had enough memory left for screen-control code), and another for actually controlling a 3D printer. After I gave up on the idea of building a 3D printer myself and bought an Ender 3, I discovered that it is set up exactly as described above; “Arduino” style microcontroller chip, but with external driver circuitry and micro-SD card slot integrated onto the main board, with a very common external LCD interface performing control and display duties. It isn’t a touch screen, but it does the job.
Sir I have made this cnc machine. I have made complete machine exactly as you have guided and I have invested my lots of time and money. But at the end one problem occurred. When I stream the g code on GCTRL, then after processing the g code for few seconds the software shows an error message, “M18 drives off” “Command not recognised”. Sir please solve my issue, I have searched the complete internet but didn’t got the solution. Please help me its urgent. PLEASE PLEASE PLEASE.
He should have used a 40 teeth pulley gear instead of the 20 or 16 tooth that he used, to get more speed out of the machine. Those little steppers are geared and are surely strong.
what are the name of thing that you used for fixing y axis shaft( white color with screw)?? or one more ques. is this have same wiring like old dvd stepper motor with arduino nano???
Bro how i change cnc drawing image size because i try to make long size cnc machine and i used your this cnc same method but i want bigger sizes drawing image on this cnc machine its possible in processing software and how i change image size width and path please replay iam your subscriber
Hi Mr innovative, Could you please guide me about that pen up and down mechanism brefily. And purchase 8 old dvds and still not able to fix it right Waiting for your reply
Hello, i have a problem, i hope You can help me, i have built an CNC with The 28byj48 motors. I have downloaded an gcode from The Internet and the CNC Works, but when i try to use my own Made g code (i have made it as You have shown in your Video) than only one Motor Works and The z axis sometimes, whats Wrong? I Hope You can help me😓 PS: i Hope You know what i mean, i am German and Not very good in Englisch😅
Hello, I love it! I'm making a similar but bigger one and it would help me a lot to get the pieces where the pencil goes and the microservo, it would be a pleasure that you would pass them to me. Thank you very much!
Hi!, I have a problem, I built a cnc, with the same motors and the same shield, only the writing plane and therefore a wider range of movement, but when I run the program, it does not exploit all its amplitude but only a very small part, I tried to change almost all the parameters in the setup, but I can not make it work, what advice can you give me? thank you
good project My cnc is not working yet, my cnc size is 150X150mm but when he is working always exceed the size limit and not plot in area? how to justify it? please help i need your help
Hello Mr Innovative kindly can you please tell me that what is the length of the Bike spoke that you are using for x and y axis ? i am anxiously waiting for you reply?
Q1> What is height of the red rod of Y-axis? Q2> What is the length of all the bycycle spoke in cm ? Q3> What is the length of x-axis stepper motor form its pulley to another pulley in cm ? Q4> What is the length of y-axis stepper motor form its pulley to another pulley in cm ? //PLEASE ANSWER MY QUESTION BECAUSE I AM THINKING TO REPRESENT THIS PROJECT IN MY SCHOOL SCIENCE FAIR//
My CNC not working yet , my CNC size 170*170 mm when he working always exceed the size limit and not plot in area how to justify it? Pls help sir pls.. thank u ..
MR.Innovative How can i draw a big size picture You gave sample gcode files are not generated big picture And i generate new gcode its not draw properly Pleas help me to solve this problem....
Hello Please help me I follow the steps as in the video, but the mini cnc does not work. Whereas in programming there is no notification error. What should I check again
Hello everybody! I have built the project, but unfortunately one stepper motor does not rotate. Can anyone help me? I want to solve the problem because it is a very good project. I would be very grateful.
may be current limit was not set properly is your motor making humming sound ? vibrating but not rotating ? if yes then rotate the small pot on driver shield till your motor move smoothly
When run the Gcrl Processing there is a error as below: --------------------------------------------------------------- The method showInputDialog(Component, Object, String, int, Icon, Object[], Object) in the type JOptionPane is not applicable for the arguments (gctrl, String, String, int, null, String[], int) ----------------------------------------------------------- This is the program below: ----------------------------------------------------------- void selectSerialPort() { String result = (String) JOptionPane.showInputDialog(this, "Select the serial port that corresponds to your Arduino board.", "Select serial port", JOptionPane.PLAIN_MESSAGE, null, Serial.list(), 0); ----------------------------------------------------------- What shall i do???
That's a pretty good build. He needs to discover electrical tape as a binding wrap, say for the belts. Electrical tape is the most underrated construction material.
Nope, the plastic ties work great.
I bet you could make a plotter with two popsicle sticks and some dental floss. That is the best way to mount those motors. The plastic ties work great. Thumbs up.
Description and list of items are also very helpful
I start making such a small machine and have a question: rather than using a piece of code in Java to send the GCode to the Arduino, maybe it would be easier to use a SD Card on the Arduino. This solve the Java part "problem", and with that you can have a stand alone machine, without the need to link the computer. In all cases, nice job.
it depends if there's enough pins on the Arduino.
Please tell how anyone can set machine to zero ? How to calibrate?
What you are suggesting is done all of the time as Arduino devices are used to drive many kids of multi-axis machines, although you may be asking a lot from an Arduino-based device if you want it to work directly with an LCD touch screen as I attempted to do.
A Raspberry Pi or equivalent could do all of it for sure, but unless Arduino has seriously upgraded their memory capacity introducing new devices, I don’t know if even the Arduino Mega has enough flash memory to handle the code for the g-code interpreter, card reading routines, stepper control, LCD, and touch interface. Most 4-axis machines, like 3D printers, when using Arduino type controllers will also employ an external driver board requiring fewer pins on the Arduino for full control. Instead of managing stepper control using a pin for each phase, the Arduino can use one pin for direction, and another for the step pulse for each axis, leaving others available for enable, micro-stepping, holding current reduction, depending on the driver board features.
But this is why many multi-axis machines, like 3D printers, use a dedicated LCD interface, freeing up memory space and CPU cycles for lower-spec devices. The Arduino-based units are really pushed to their limits as real-time processing demands are pretty harsh, which is why the 16MHz versions are preferred for this kind of duty. And remember also that the micro-controller must read and interpret g-code if it is to run as an intelligent controller, and not just a bus-coupler being driven by some other system.
I have a Mega set up with a 3” LCD touch screen and micro-sd card reading functions, leaving little memory available for much other practical functionality. This setup would have required one Mega dedicated to the LCD for HMI functions (assuming the Mega had enough memory left for screen-control code), and another for actually controlling a 3D printer.
After I gave up on the idea of building a 3D printer myself and bought an Ender 3, I discovered that it is set up exactly as described above; “Arduino” style microcontroller chip, but with external driver circuitry and micro-SD card slot integrated onto the main board, with a very common external LCD interface performing control and display duties. It isn’t a touch screen, but it does the job.
Sir I have made this cnc machine. I have made complete machine exactly as you have guided and I have invested my lots of time and money. But at the end one problem occurred. When I stream the g code on GCTRL, then after processing the g code for few seconds the software shows an error message, “M18 drives off” “Command not recognised”.
Sir please solve my issue, I have searched the complete internet but didn’t got the solution.
Please help me its urgent. PLEASE PLEASE PLEASE.
it is an amazing project. in this project, can I use 12v motor that used in printer (cannon ip2772). please help me.
Bro can i use 12v 28 BYJ stepper motor instead of 5v
yes
Really enjoyed watching this video. Kinda therapeutic :) Excellent work sir
thanks...
Will the placement of the object will affect its way of drawing
Hi friend I made a cnc as per your video description but on drawing it says m18 drives off
Please help me
Mr Innovative, fantastic Sir very innovative design, very inspiring
He should have used a 40 teeth pulley gear instead of the 20 or 16 tooth that he used, to get more speed out of the machine. Those little steppers are geared and are surely strong.
Bro can u please tell at what distance should the holes are made
what are the name of thing that you used for fixing y axis shaft( white color with screw)?? or one more ques. is this have same wiring like old dvd stepper motor with arduino nano???
that are acrylic tube with inside thread you can use pvc pipes or something like that
Some Acrylic Hollow tubes You bought where?
Can a use a CNC shield by taking out the red wire of the motor out
Bro how i change cnc drawing image size because i try to make long size cnc machine and i used your this cnc same method but i want bigger sizes drawing image on this cnc machine its possible in processing software and how i change image size width and path please replay iam your subscriber
Hi friend I made a cnc but on drawing it says m18 drives off
Please help me
Hi Mr innovative,
Could you please guide me about that pen up and down mechanism brefily. And purchase 8 old dvds and still not able to fix it right
Waiting for your reply
what's the length of the railing you used I have used small diameter railing it's bending will it be ok ?
Hello, i have a problem, i hope You can help me, i have built an CNC with The 28byj48 motors.
I have downloaded an gcode from The Internet and the CNC Works, but when i try to use my own Made g code (i have made it as You have shown in your Video) than only one Motor Works and The z axis sometimes, whats Wrong? I Hope You can help me😓
PS: i Hope You know what i mean, i am German and Not very good in Englisch😅
Hello, I love it! I'm making a similar but bigger one and it would help me a lot to get the pieces where the pencil goes and the microservo, it would be a pleasure that you would pass them to me. Thank you very much!
All the plastic parts are from various compact disk drives. I think the ones you are asking about make the disk tray open and close
Bina motor shield kiye hua, dono stepper motor ko ek sath kaise chala payenge sir..please give a solution sir
How to put 2 screws in right order and how would you cut that dvd m3chanism soo accurately????
Please please reply me
Can I use external 9 volt dc for 5 volt 28byj-48 stepper motor?
Hello Sir.
I made one cnc machine .
But It's printing is wrong
I think dvd stepper motor wiring problem .
Can u help me for this.
Plzz reply me
sam kumar well maybe I can help you?
rennier rodil How do I set machine to zero ? How to calibrate ?
@@rennierrodil6119 Hi friend I made a cnc as per your video description but on drawing it says m18 drives off
Please help me
can you tell me how many steps required per revolution for 28byj 48 stepper motor
thanks for your video it gives me inspiration for my project
SIR,YE IMAGE BANANE ME REAL TIME KITNA LAGA THA,IT SEEMS TOO SLOW..
stepper motor bipolor chahiye kya bhaiya
unipolar
Hi!, I have a problem, I built a cnc, with the same motors and the same shield, only the writing plane and therefore a wider range of movement, but when I run the program, it does not exploit all its amplitude but only a very small part, I tried to change almost all the parameters in the setup, but I can not make it work, what advice can you give me? thank you
good project
My cnc is not working yet, my cnc size is 150X150mm but when he is working always exceed the size limit and not plot in area? how to justify it? please help i need your help
Sir same problem pls help me ...
Hello can i make 3d printer with these stepper motors?
Hello Mr Innovative kindly can you please tell me that what is the length of the Bike spoke that you are using for x and y axis ? i am anxiously waiting for you reply?
150 mm
Thank you sir :)
hi there is got error in size void setup() { size(500, 250); openSerialPort(); } so anyone can help to clear this issue
Hi!, I have a problem
this
code problem servo motor every time running
Q1> What is height of the red rod of Y-axis?
Q2> What is the length of all the bycycle spoke in cm ?
Q3> What is the length of x-axis stepper motor form its pulley to another pulley in cm ?
Q4> What is the length of y-axis stepper motor form its pulley to another pulley in cm ?
//PLEASE ANSWER MY QUESTION BECAUSE I AM THINKING TO REPRESENT THIS PROJECT IN MY SCHOOL SCIENCE FAIR//
What changes should I make in arduino code and gctrl for longer railings
None, the code with get the coodinates from exported gcode from inkscape
My CNC not working yet , my CNC size 170*170 mm when he working always exceed the size limit and not plot in area how to justify it? Pls help sir pls.. thank u ..
can you make a laser engraver with this cnc?
Bipolar stepper ??
unipolar
Host that don’t reply means there projects r not working unsubscribe there channels n don’t waste time on their videos
Why do you not you MOTOR at the place of SERVO? pls answer me!
I can't use AFMOTOR, what should I do?
It's always better to put 2 screw not only 1 ..it's not solid.
Can we use nema 17 without changing the code please reply
Nema17 arebipolar stepper motors , while in this video it seems to be unipolar stepper motors. You will probably have to check the code for that.
You got a like for Hisoka :D
hi sir
i have also tried this with older version from seeing ur old video
but it is not giving desired output so pls help me
my home made CNC you can ask for help ruclips.net/video/XlMwCdihQfo/видео.html
How much money does your machine take
Plz help, after the servo, moves, the motor dont move, and there is no more output in the console
MR.Innovative How can i draw a big size picture
You gave sample gcode files are not generated big picture
And i generate new gcode its not draw properly
Pleas help me to solve this problem....
That's actually pretty darn ingenious! Great job!
my home made CNC you can ask for help ruclips.net/video/XlMwCdihQfo/видео.html
From where did u get the slotted channel?
Its called DIN Rails. Easily available near industrial area.
it is not for sale?
Sorry sir 😔
It's not working for me, maybe I instal Processing 3 and developers have changed something and your code is no longer compatible.
Hello
Please help me
I follow the steps as in the video, but the mini cnc does not work. Whereas in programming there is no notification error. What should I check again
May be your connection to the shield from the motor is wrong
I think I can help you
I cannot execute code as per the size of my railings plzz plzz help me
nice project but the penholder is to loose
Give me the actual code that you are using on this video. Your linked code doesn't work.
hi can i get exact dimentions and drawing? i will make this for my project.
From where do I get Dvd Shutter Mechanism ??
GO TO ANY COMPUTER REPAR SHOP AND ASK FOR OLD DVD WRITERS , AND BUY THEM , ONCE U OPEN THEM U WILL GET EVERYTHING INSIDE..
Please mention the Name of motor used for up and the pen
Micro Servo TowerPro 9g SG90
this is true art :)
Hello arduino Ka model Kiya hai
Please I need the correct code llardoino because the code in the below video is invalid
Sir...pls kindly send me the each and every parts name and price...plzzzz
ruclips.net/user/edit?o=U&video_id=XlMwCdihQfo , my home made CNC you can ask for help
FOX Story when i use your Link i can't see anyting🤔
Can i ask You something about this cnc
ruclips.net/video/XlMwCdihQfo/видео.html
Where we should connect the servo motor
Just have a look at the Arduino code: penServoPin is 10. (but you can change it, depends on your need)
hey , i made a working model of this project but when i tell it to draw a 100mm line it draws a 10m line , it scales down everything
Look at the scale in inkscape and then make sure the rulers are the dimensions of your table.
@@noweare1 😕
can we use this plottor for robotic tic tac toe game if yes then please exlplain
plz help me how to calibrate cnc machine
arduino code is not uploading in the bord please help me sir
May be u have duplicate board
My step motor only move forward , what's the problem...
nice cnc diy
Sir meri cnc machine ke stepper motor bhot vibration kar ray ha pelease ap kuch batia
stepper motor konsi hai? agar is video me ikahi gayi byj28 type hai to shayd motor connections ko modify karke unhe stepper me convert krna hoga
Fantastic work, bro! :D
thanks
Cool explanation but the music ...
Bro motor heat q ho rhi hai
the linear slider is too loose, that's why you get inaccurate results
what linear guide use for project.?best project thanks for details
linear guids are Bike Spoke wire aprox 3mm thick and axis platform are taken from CD Drive
from where did you get aurduino please reply
Own CHOICE Amazon
U GET ARDUINO AT ALIEXPRESS AND ARE VERY CHEAP COMPARED TO OTHER SITES
How to set the machine to zero (initial) ?
I want to support your channel from paytm.
3:10 name this component please
idler pulley
the drawing result of mine is very small, how to fix it pls...
Me tooo
same problem
Hello everybody!
I have built the project, but unfortunately one stepper motor does not rotate.
Can anyone help me?
I want to solve the problem because it is a very good project.
I would be very grateful.
Can you check it by replacing with working one so in this way you can rectify your stepper is healthy or not
The stepper is good, it has been checked. I'll try another motor shield, I'll order another. Could that be the source of the error?
may be current limit was not set properly is your motor making humming sound ? vibrating but not rotating ? if yes then rotate the small pot on driver shield till your motor move smoothly
Unfortunately, there is no vibration, no noise. There are no pots on this shield.
NEED TO ORDER WHOLE BOARD, JUST A CHIP LD 293 , REPLACE IT AND THEN CHK AGAIN, ALSO CHECK THE CABLE FOR CONTINUITY BETWEEN MOTOR AND SHIELD ..
hi there is got error in size
void setup()
{
size(500, 250);
openSerialPort();
}
so anyone can help to clear this issue
Como usa em 3 28y?
Servo motor not working
Please help
I can not draw big pictures
It draws images like my nail size
Please help how could i draw little big drawing
Bhi thoda help kar do
The music is the problem.
Mobile par programming kaise karen video banao
Please
When run the Gcrl Processing there is a error as below:
---------------------------------------------------------------
The method showInputDialog(Component, Object, String, int, Icon, Object[], Object) in the type JOptionPane is not applicable for the arguments (gctrl, String, String, int, null, String[], int)
-----------------------------------------------------------
This is the program below:
-----------------------------------------------------------
void selectSerialPort()
{
String result = (String) JOptionPane.showInputDialog(this,
"Select the serial port that corresponds to your Arduino board.",
"Select serial port",
JOptionPane.PLAIN_MESSAGE,
null,
Serial.list(),
0);
-----------------------------------------------------------
What shall i do???
Please curcuit name
great work brother
Drum and bass!!!
what is a GCTRL
ruclips.net/user/edit?o=U&video_id=XlMwCdihQfo , my home made CNC you can ask for help
ruclips.net/video/XlMwCdihQfo/видео.html my home made CNC you can ask for help
@@BROOOCODE.. Hi friend I made a cnc , but on drawing it says m18 drives off
Please help me
How select com serial port in processor
Click on the my RUclips icon and then you can see the peoject
Mera pas dame motor h ita a unipolar stepper motor
What kind of audio bro
Dá pra ligar um laser nesse shield
Best video
بتبيع الة دي
awesome!