Posts

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; //...

Circuit Diagram Of CNC Machine By : T4TECHZ

Image

Circuit Diagram of IR sensor Module and NOT Gate

Image

Code for voice controlled car T4TECHZ

#include <SoftwareSerial.h> SoftwareSerial BT(0, 1); //TX, RX respetively String readvoice; int LED1 = A0; //define LED 1 pin int LED2 = A1; //define LED 2 pin int LMP=3; int LMN=4; int RMP=5; int RMN=6; long duration, distance, duration2, distance2; void setup() {  BT.begin(9600);  Serial.begin(9600);     pinMode(LMP, OUTPUT);   pinMode(LMN, OUTPUT);   pinMode(RMP, OUTPUT);   pinMode(RMN, OUTPUT);   } //-----------------------------------------------------------------------//  void loop() {   while (BT.available()){  //Check if there is an available byte to read   delay(10); //Delay added to make thing stable   char c = BT.read(); //Conduct a serial read   readvoice += c; //build the string- "forward", "reverse", "left" and "right"   }    if(readvoice == "*forward#")  {     digitalWrite(LMP, HIGH);     digitalWrite (LMN, HIGH);     digitalWrite(RMP,LOW);   ...