# GRBL 13.2 SKU:M035
## Description **GRBL 13.2** is a three-axis stepper motor driver module in the M5Stack stacking module series. It uses an ATmega328P-AU controller with three sets of DRV8825PWPR stepper motor driver chip control ways, which can drive three bipolar steppers at the same time. Using the I2C communication interface (default address:0x70) and integrated DIP switch for adjusting motor step subdivision (maximum support of 1/32 step subdivision) and I2C address adjustment (support dual address adjustment 0x70, 0x71), You can achieve six-axis control by stacking two **GRBL 13.2** modules. The power input interface is DC/9-24V, the motor drive current can reach 1.5A, and three sets of limit switch signal interfaces are open, which can be used to connect an external limit switch to realize the motor braking function. Suitable for a variety of stepping motor motion control scenarios, such as printers, robotic arms, etc. ## Product Features - ATmega328P-AU controller - Three-axis DRV8825PWPR stepper motor driver - Drive current up to 1.5A - Drive bipolar stepper motor - Maximum 1/32 mode STEP subdivision ## Include - 1x GRBL 13.2 Module ## Applications - Printer - scanner - Office automation machine - Factory automation - robot technology ## Specification
Specifications Parameters
Motor driver chip DRV8825PWPR
Controller chip ATmega328P-AU
Maximum drive current of single channel 1.5A
Support maximum step subdivision 1/32
Interface XT2.54-4P
Net weight 22.5g
Gross weight 42.3g
Product size 54.2*54.2*13.2mm
Package size 95*65*25mm
## EasyLoader >EasyLoader is a concise and fast program writer, which has a built-in case program related to the product. It can be burned to the main control by simple steps to perform a series of function verification. Please install the corresponding driver according to the device type. M5Core host [Please click here to view the CP210X driver installation tutorial](en/arduino/arduino_development)

Description:

Press the button to drive the three-axis stepping motor to rotate, when the lock occurs, press the button C to unlock

## Related Link - [DRV8825 Datasheet](https://m5stack.oss-cn-shenzhen.aliyuncs.com/resource/docs/datasheet/module/DRV8825_en.pdf) - [GRBL-Firmware](https://m5stack.oss-cn-shenzhen.aliyuncs.com/resource/docs/GRBL13.2-Module-Arduino-Library.zip) ## PinMap
M5StackGPIO21GPIO225VGND
GRBL 13.2SDASCLVCCGND
## Schematic ## Step subdivision adjustment
MODE2MODE1MODE0STEP MODE
000Full step (2-phase excitation) with 71% current
0011/2 step (1-2 phase excitation)
0101/4 step (W1-2 phase excitation)
0111/8 step
1001/16 step
1011/32 step
1101/32 step
1111/32 step
## I2C address adjustment
SwitchAddress
00x70
10x71
## Example - [Arduino Example Code](https://github.com/m5stack/M5Stack/tree/master/examples/Modules/GRBL13.2) ```clike GrblControl.h-API //Initialize void Init(); //Initialize, and set the three-axis step length and acceleration. void Init(uint32_t x_step, uint32_t y_step,uint32_t z_step,uint32_t acc); //Gocde void Gcode(char *c); //Control x, y, z offset and motor speed void SetMotor(int x=0, int y=0, int z=0, int speed=300); ``` - [Configuration reference document](https://github.com/grbl/grbl/wiki/Configuring-Grbl-v0.7)