-40%

V2/V3/V4 CNC Shield Engraver 3D Printer Expansion Board A4988 Driver Module

$ 0.6

Availability: 594 in stock
  • Restocking Fee: No
  • All returns accepted: Returns Accepted
  • Item must be returned within: 60 Days
  • Condition: New
  • Marke: Markenlos
  • Return shipping will be paid by: Seller
  • Herstellernummer: nicht zutreffend
  • Marca: - Senza marca/Generico -
  • Country/Region of Manufacture: China
  • UPC: Does Not Apply
  • Model: Does Not Apply
  • Manufacturer Part Number: Does Not Apply
  • Refund will be given as: Money Back
  • Numéro de pièce fabricant: Non applicable
  • Brand: Unbranded
  • Marque: - Sans marque/Générique -
  • MPN: Does Not Apply
  • EAN: Does Not Apply

    Description

    Visit store
    Items for sale
    About us
    Product Details
    CNC Shield V4 Expansion Board Set A4988 With USB Cable
    Features:
    100% Brand new and high quality!
    This expansion board as a driver expansion board, can be used for engraving machines, 3D printers.
    It is a total of four slots, can drive four A4988 stepper motor. Each road stepper motors only need two IO ports. In other words, six IO ports can be well managed three stepper motors. Very convenient to use.
    UNO for Arduino module IO port correspondence introduction.
    Best choice for yourself or your friend.You will not be disappointed!
    Specifications:
    Color: Red
    Type:cnc shield v4
    Size: 7.2*5.9cm
    Package included:
    1 x CNC Shield V4 Expansion Board Suit
    1 x USB Cable
    CNC V4 Shield
    Specification
    3 axis stepper motor driver
    Compatible with micro-drive laser engraving machine, three-axis CNC engraving machine,.
    2A can be controlled within the two-phase four-wire stepper motor.
    Released the digital IO interface, easy to connect to other modules, such as ENDSTOP.
    Released the I2C interface, you can connect to the LCD I2C or other I2C module.
    Power DC5V interface, 7.5-12V voltage input.
    GRBL compatible
    Worked with arduino nano.
    Package Included:
    1 x CNC Shield V4 Engraving Machine Stepper Motor Driver GRBL Compatible
    CNC V2.0 shield
    1.The new MKS Base 1.2 3D Printer Controller board combines and improves the assets of the RAMPS 1.4 and Arduino Mega 2560 boards on a fantastic single board solution. The MKS Base 1.2 is an optimal 3D printer controller solution for your Reprap 3D Printer.
    2. LCD 12864 Smart Controller
    It contains a SD-Card reader. You can easy connect it to your Ramps board using the ""smart adapter"" included. After connecting this panel to your Ramps you don't need your pc any more, the Smart Controller supplies power for your SD card.
    3.The DRV8825 stepper motor driver carrier is a breakout board for TI’s DRV8825 microstepping bipolar stepper motor driver. The module has a pinout and interface that are nearly identical to those of our A4988 stepper motor driver board, so it can be used as a higher-performance drop-in replacement for those boards in many applications. The DRV8825 features adjustable current limiting, overcurrent and overtemperature protection, and six microstep resolutions (down to 1/32-step). It operates from 8.2 – 45 V and can deliver up to approximately 1.5 A per phase without a heat sink or forced air flow (rated for up to 2.2 A per coil with sufficient additional cooling).
    Package Included:
    1PCS
    *
    CNC Shield A4988 Driver Expansion Board V2 nEgraevr 3D Printer
    CNC V3.0 shield
    Description:
    100% brand new and high quality
    This expansion board as a driver expansion board, can be used for engraving machines, 3D printers.
    It is a total of four slots, can drive four A4988 stepper motor. Each road stepper motors only need two IO ports. In other words, six IO ports can be well managed three stepper motors. Very convenient to use.
    UNO for Arduino module IO port correspondence introduction.
    IO corresponding figure above
    UNO for Arduino---------------------- expansion board
    8 ------------------------ EN ( stepper motor driver enable , active low )
    7 ----------------------- Z.DIR (Z -axis direction control )
    6 ----------------------- Y.DIR (Y -axis direction control )
    5 ----------------------- X.DIR (X -axis direction control )
    4 ---------------------- Z.STEP (Z -axis stepper control )
    3 ---------------------- Y.STEP (Y -axis stepper control )
    2 ---------------------- X.STEP (X -axis stepper control )
    / / The following is a simple stepper motor control procedures,
    # define EN 8 / / stepper motor enable , active low
    # define X_DIR 5 / / X -axis stepper motor direction control
    # define Y_DIR 6 / / y -axis stepper motor direction control
    # define Z_DIR 7 / / z axis stepper motor direction control
    # define X_STP 2 / / x -axis stepper control
    # define Y_STP 3 / / y -axis stepper control
    # define Z_STP 4 / / z -axis stepper control
    / *
    / / Function : step . function: to control the direction of the stepper motor , the number of steps .
    / / Parameters : dir direction control , dirPin corresponding stepper motor DIR pin , stepperPin corresponding stepper motor " step " pin , Step number of step of no return value.
    * /
    void step (boolean dir, byte dirPin, byte stepperPin, int steps)
    {
    digitalWrite (dirPin, dir);
    delay (50);
    for (int i = 0; i digitalWrite (stepperPin, HIGH);
    delayMicroseconds (800);
    digitalWrite (stepperPin, LOW);
    delayMicroseconds (800);
    }
    }
    void setup () {/ / The stepper motor used in the IO pin is set to output
    pinMode (X_DIR, OUTPUT); pinMode (X_STP, OUTPUT);
    pinMode (Y_DIR, OUTPUT); pinMode (Y_STP, OUTPUT);
    pinMode (Z_DIR, OUTPUT); pinMode (Z_STP, OUTPUT);
    pinMode (EN, OUTPUT);
    digitalWrite (EN, LOW);
    }
    void loop () {
    step (false, X_DIR, X_STP, 200); / / X axis motor reverse 1 ring, the 200 step is a circle.
    step (false, Y_DIR, Y_STP, 200); / / y axis motor reverse 1 ring, the 200 step is a circle.
    step (false, Z_DIR, Z_STP, 200); / / z axis motor reverse 1 ring, the 200 step is a circle.
    delay (1000);
    step (true, X_DIR, X_STP, 200); / / X axis motor forward 1 laps, the 200 step is a circle.
    step (true, Y_DIR, Y_STP, 200); / / y axis motor forward 1 laps, the 200 step is a circle.
    step (true, Z_DIR, Z_STP, 200); / / z axis motor forward 1 laps, the 200 step is a circle.
    delay (1000);
    }
    Note: When inserting the A4988 module, must be careful not to insert opposite. Stepper motor wiring as follows:
    2A, 2B is a group (red, green), 1A, 1B is a group (blue, yellow), if want to change direction, can be change the position of one group , for example 2A, 2B mutually exchanged.
    Package Included:
    1 x  V3 Engraver 3D Printer New CNC Shield Expansion Board A4988 Driver
    CNC Shield V3 Expansion Board Suit
    UNO R3 + CNC Shield V3 Expansion Board + 4pcs A4988
    Package included:
    - 1x UNO R3 CH340 (with cable)
    - 1x CNC Shield
    - 4x Stepper Driver A4988 inkl. Kühlkörper & Pad
    Depends on your chioce!
    Payment Method
    Shipping Policy
    Returns & Refund Policy
    Feedback
    Payment Method
    EBAY Managed Payment.
    But we only
    Accept
    your
    Ebay Address
    , please Make sure it's 100% right.
    Payment must be received in 5 business days of auction closing.
    Please leave note for your special request (e.g. Colors or Size) in PayPal when you pay the order.
    Any special request cannot be accepted after 24 hours of payment, because most of orders will be processed instantly and same day dispatched.
    Shipping Policy
    1. We only ship to the confirmed address provided by eBay. please make sure your ebay address is 100% matches the address you would like us to ship to. If not, please let us know before we sent you the package, or we will not be responsible for any loss. hope you could understand.
    2. Orders will be processed instantly and dispatched within 1-3 business days except hoilday, so we do NOT accept any email/message note after you place orders.
    3. All package need to wait 30 days,Please take care it.Less than 30 days,we can't take a refund.
    Returns & Refund Policy
    All package need to
    wait 30 days
    (US only n
    eed 7-10 days)
    ,
    Please take care it.Less than 30 days,we can't take a refund
    .
    If the item is defect when you receive it or you are not satisfied with it, please return it within 14 days for a replacement or money back. But the items must be back in factory condition. Please keep in touch with us and double check the return address before you return it.
    If is item is defective in 12 months, you can return it to us. We will send you a new replacement after receiving the defective item.
    Feedback
    We maintain high standards of excellence and strive for 100% customer satisfaction! Feedback is very important to us. We request that you keep in touch with us immediately BEFORE you give us neutral or negative feedback, so that we can satisfactorily address your concerns.