|
MP6602 library
|
This is a library for the Arduino IDE that helps interface with an MP6602 stepper motor driver. It uses the Arduino SPI library to communicate with the SPI interface (nSCS, SCLK, SDATI, and SDATO) of the MP6602.
This library is designed to work with the Arduino IDE versions 1.8.x or later; we have not tested it with earlier versions. This library should support any Arduino-compatible board, including the Pololu A-Star controllers.
An MP6602 carrier can be purchased from Pololu's website. Before continuing, careful reading of its product page is recommended.
You will need to connect your motor, motor power, and IOREF as described on the product page. You should also make the following connections between the Arduino and the driver:
| Arduino | MP6602 |
|---|---|
| Digital pin 2 | DIR |
| Digital pin 3 | STEP |
| Digital pin 4 | nSCS |
| SCK | SCLK |
| MOSI | SDATI (SDI) |
| MISO | SDATO (SDO) |
| IOREF | VCC |
| GND | GND |
The SDATO pin is only needed if you want to read information back from the stepper driver. Since the motor can be stepped and its direction changed using the SPI interface, it is possible to use the driver without connecting the STEP and DIR pins, and they are not used in every example.
The SPI pins (MOSI, MISO, and SCK) on Arduino-compatible boards are sometimes not labeled. You should refer to the documentation for your particular board to find the locations of these pins.
If your Arduino does not have an IOREF pin, connect a supply matching the logic voltage of your controller (e.g. 5V for an Arduino Uno) to VCC and nSLEEP.
You can use the Library Manager to install this library:
If this does not work, you can manually install the library:
Several example sketches are available that show how to use the library. You can access them from the Arduino IDE by opening the "File" menu, selecting "Examples", and then selecting "MP6602". If you cannot find the examples, the library was probably installed incorrectly and you should retry the installation instructions above.
For complete documentation of this library, including many features that were not mentioned here, see the mp6602-arduino documentation. If you are already on that page, see the MP6602 class reference.