Skip to content

Week 6 - Electronics design

Assignments of the Week

Group Assignment

  • use the test equipment in your lab to observe the operation of a microcontroller circuit board

Individual Assignment

  • use an EDA tool to design a development board that uses parts from the inventory to interact and communicate with an embedded microcontroller
  • extra credit: try another design workflow
  • extra credit: simulate your design
  • extra credit: design a case around your design

This week, I plan to design and manufacture an expansion board using Seeed Studio XIAO ESP32-C3, which can accommodate four A4988 stepper motor drivers, enabling independent control of four stepper motors. Through this practice, I will delve into using Fusion 360 for PCB design, covering component selection, schematic drawing, circuit layout optimization, and generating 3D views and manufacturing files to ensure the board’s producibility and stability.

PCB Design Process

1. Project Initialization

Create a new electronic design project in Fusion 360:

  1. Create a new project and select "New Electronics Design"

  2. Create a new schematic

2. Component Library Preparation

In Fusion 360, I need to use component models for the Seeed Studio Xiao ESP32-C3 and A4988 stepper motor driver. However, as these components were not found in the software, there are two possible solutions:

  1. Manual Component Addition

    • Download footprint files from official websites and import existing libraries
  2. Custom Component Design

    • Create custom footprints in Fusion 360 and manually draw schematic symbols and PCB layouts

I chose the first approach

2.1 Seeed Studio XIAO ESP32-C3

  1. Download schematic and footprint files from Seeed Studio websiteDownload Files
  2. Import the downloaded .lbr file into Fusion 360
  3. After successful import, Xiao ESP32-C3 can be found in the component search bar
  4. Click and hold the left mouse button on the desired component, then drag it to the left to place it in the schematic

2.2 A4988 Stepper Motor Driver

  1. Obtain the component library file by downloading from GitHub Driver Files

    Reference: Eagle-Library-Pololu

  2. Place four A4988 modules in the schematic using the same method

3. Hardware Specification Analysis

3.1 Pin Definitions

Below are the pin definitions for XIAO ESP32-C3 and A4988. Based on these definitions, I can connect four A4988 modules to the XIAO ESP32-C3 to achieve independent control of four stepper motors.

XIAO Pin Diagram

A4988 Pin Diagram

3.2 A4988 Technical Specifications

Here are the technical specifications for the A4988:

Parameter TypeSpecification
Motor Output Voltage8V – 35V
Logic Input Voltage3V – 5.5V
Continuous Current per Phase1A
Maximum Current per Phase2A
Microstepping ResolutionFull, 1/2, 1/4, 1/8, 1/16

3.3 Power System

A4988 requires two power connections:

  • Logic Power
    • VDD-GND: 3V-5.5V, for internal logic circuits
  • Motor Power
    • VMOT-GND: 8V-35V, for motor drive
  • Note: Motor power requires decoupling capacitors to maintain current

Power Connection

3.4 Microstepping Control

The A4988 driver supports microstepping, which achieves finer step divisions by applying intermediate current levels to the motor coils.

  • MS1/MS2/MS3: Used to select microstepping resolution, different logic level combinations can set different microstepping modes.
  • Default state: Pulled down to full-step mode. For example, when driving a NEMA 17 motor (1.8° step angle, i.e., 200 steps/revolution) in quarter-step mode, the motor will execute 800 microsteps per revolution.

Microstepping Selection

3.5 Motion Control

A4988 has two control input pins - STEP and DIR.

  • STEP: Step control, each high-level pulse sent to this pin drives the motor according to the microstep selection pins. The faster the pulses, the faster the motor rotates.
  • DIR: Direction control, high level for clockwise, low level for counterclockwise Motion Control

3.6 Power Management

  • EN: Enable control, default active-low input for this pin
  • SLP: Sleep mode, enters on low level
  • RST: Reset control, resets on low level Power Management

3.7 Motor Output

  • 1A/1B/2A/2B: Motor phase interfaces for connecting stepper motors. Motor Output

4. Pin Assignment Plan

Below is the pin connection plan:

XIAO ESP32 C3 PinSignal Name
D0Motor 1 STEP
D1Motor 1 DIR
D2Motor 2 STEP
D3Motor 2 DIR
D4Motor 3 STEP
D5Motor 3 DIR
D6Motor 4 STEP
D7Motor 4 DIR
GNDAll A4988 ENABLE
GNDAll A4988 GND
5VAll A4988 VDD

5. Circuit Design Implementation

5.1 Schematic Design

  1. Power Area Wiring

First, we wire the power section to ensure proper VCC and GND connections.

  1. Pin Connections

Next, connect the signals between XIAO ESP32 C3 and A4988 stepper motor drivers.

  1. ENABLE Pin Grounding

All A4988 ENABLE pins are connected to GND to enable the stepper drivers by default.

  1. SLP and RST Pin Connection

Connect SLP (Sleep) and RST (Reset) pins together to ensure the driver remains in working state.

  1. Microstepping Control

A4988 provides MS1, MS2, MS3 microstepping control pins, which we route to dual-row headers with the other end connected to +5V. This allows microstepping mode changes using jumpers.

  1. Motor Interface Design

Similarly, we route out the four stepper motor phase signals (1A, 1B, 2A, 2B) for easy connection to external motors. To ensure stable motor operation, I added decoupling capacitors in the motor power section to maintain current.

5.2 PCB Design and Layout

  1. Convert to PCB Document

After completing the schematic design, we convert it to a PCB document for board layout.

  1. PCB Component Arrangement

After entering the PCB layout interface, we first arrange the components logically to make the circuit layout clear, compact, and reduce routing complexity.

  1. Routing Complete

5.3 Post-Processing

  1. Add Silkscreen Information

First, select the Top Silkscreen (tSilkS) layer, then add text content (marking pins, module names, etc.).

  1. 3D PCB Preview

Finally, we push the PCB design to Fusion 360's 3D PCB view to preview the final product appearance.

All related files and resources can be found in my Google Drive: https://drive.google.com/drive/folders/1q6vlHqLn06ZCLNSHgEs6LsDOtUmkOZpD?usp=drive_link