CNC Plotter DIY Homemade – TRONICSpro

Introduction

CNC Plotter DIY Homemade: How to Make Your Own Plotter at home.

Are you tired of manually drawing your designs on paper? Do you want to take your artistic skills to the next level? If yes, then a CNC plotter may be the perfect solution for you. With a CNC plotter, you can automate the drawing process and create precise designs with ease. In this article, we will guide you on how to make your own CNC plotter.

MINI CNC PLOTTER PART – 1

CNC Plotter DIY Homemade
CNC Plotter DIY Homemade

MINI CNC PLOTTER PART – 2

CNC Plotter DIY Homemade Thumbnail
CNC Plotter DIY Homemade Thumbnail

Circuit Diagram

of CNC Plotter DIY Homemade

Following is the circuit diagram which will guide you to build the project smoothly.

CNC Plotter DIY Homemade Circuit Diagram
CNC Plotter DIY Homemade Circuit Diagram




More Circuit Layouts






Working Explanation of CNC Plotter DIY Homemade

Arduino Code

#include <Stepper.h>
#include <Servo.h> 
Servo myservo; 
int pos = 0; 
const int stepsPerRevolution = 20; 
 
Stepper myStepperX(stepsPerRevolution, 6,7,8,9); 
 Stepper myStepperY(stepsPerRevolution, 2,3,4,5);
void setup() {
 //Set speed:
   myservo.attach(10);
 myStepperX.setSpeed(100);
  myStepperY.setSpeed(100);
 //max 250 steps for dvd/cd stepper motors 
   myservo.write(0);
 myStepperX.step(160);
 myservo.write(40);
  delay(200); 
  myservo.write(0);  
  myStepperY.step(250);
 myservo.write(40); 
  delay(200);
 myservo.write(0);  
 }
 void loop() {
}



Components List

of CNC Plotter DIY Homemade

First and foremost, you will need to gather the necessary materials for your CNC plotter. The following is a list of essential components that you will need:

  • 1x ARDUINO NANO
  • 2x L293D IC
  • 2x DVD ROMS
  • 1x SERVO MOTOR
  • 1x 2 PIN TERMINAL BLOCK
  • VERO BOARD
  • JUMPER WIRES
  • MALE HEADERS
  • FEMALE HEADERS
  • ARDUINO CODES:
  • https://drive.google.com/file/d/1TXyVcx1-E7g-cBN42C56X8dwBbIm9X7V/view
  • G Code Sending Software:
  • https://drive.google.com/file/d/1pncEWd4jloxnflvPz4qVdqCrJCFXZa1s/view
  • G Code file maker:
  • https://inkscape.org/
  • G Code files:
  • https://drive.google.com/file/d/1901vQT3Zh-EdSnr9AEfWMl5gbLvF5uD0/view

Conclusion

In conclusion, a CNC plotter is a handy tool that can help automate the drawing process and create precise designs with ease. With the right materials and a bit of effort, you can easily build your own CNC plotter at home. We hope this guide has been helpful in your CNC plotter DIY journey. Happy building and creating!



More projects, You may like:

(Visited 256 times, 1 visits today)

Leave a Reply

Your email address will not be published.