Posts

Showing posts from December, 2020

Extension File Of Inkscape Software

Extension file  Click Here

Circuit Diagram Of LED Star

Image

Follow The Steps Bellow , To Make CNC Machine By T4TECHZ

Arduino Mini CNC Plotter Machine From Dvd Drives By "T4TECHZ" INTRODUCTION : Arduino Mini CNC Plotter Machine From Dvd Driver Follow the video here https://youtu.be/PtbnPl4-yyo I decided to make this detailed guide to help you make it on a few easy steps. Small description: For the X and Y axes we will use two stepper motors and rails from dvd/cd drives and for the Z axis we will use a small servo motor that moves the pen up and down. The Arduino-based circuit is using the ATmega328 microcontroller, two L293 motor driver ICs and an usb to serial module. You can easily make it with the Arduino uno board and an breadboard. You can also use an Bluetooth module (e.g. HC-06) to print your texts (or images) wirelessly through your computer Bluetooth connection! Pretty cool huh? _________________________________________________________ Follow us on Facebook page https://www.facebook.com/T4techz-112021123635521 / Follow us on Instagram https://www.instagram.com/t4techz.

Code For CNC Machine By : T4TECHZ

/* Mini CNC Machine By : T4TECHZ http://www.youtube.com/c/T4TECHZOfficialChannel Follow the video of CNC Machine https://youtu.be/PtbnPl4-yyo */ #include <Servo.h> #include <Stepper.h> #define LINE_BUFFER_LENGTH 512 // Servo position for Up and Down const int penZUp = 110 ; const int penZDown = 90; // Servo on PWM pin 6 const int penServoPin = 6; // Should be right for DVD steppers, but is not too important here const int stepsPerRevolution = 20; // create servo object to control a servo Servo penServo;  // Initialize steppers for X- and Y-axis using this Arduino pins for the L293D H-bridge Stepper myStepperY(stepsPerRevolution, 2,3,4,5);            Stepper myStepperX(stepsPerRevolution, 8,9,10,11);  /* Structures, global variables    */ struct point {   float x;   float y;   float z; }; // Current position of plothead struct point actuatorPos; //  Drawing settings, should be OK float StepInc = 1; int StepDelay = 0; int LineDelay = 50; int

Circuit Diagram Of CNC Machine By : T4TECHZ

Image