Week 6 - Electronics Design

Assignment

Group assignment:

Use the test equipment in your lab to observe the operation of a microcontroller circuit board (as a minimum, you should demonstrate the use of a multimeter and oscilloscope)
Document your work on the group work page and reflect what you learned on your individual page

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

Getting Started with KiCad

Downloaded and installed KiCad 9.0
Opened KiCad and created a new project: File > New Project
Two key files were generated:
Schematic Editor used to design and define the logical connections between electronic components in a circuit.
PCB Editor used to create the physical layout of the circuit on a printed circuit board, placing components and routing traces.

Photo: Creating a Project in KiCad

I started by adding Fab library.

Steps to add Library

Downloaded the library zip file from GitLab.
Opened Preferences > Manage Symbol Libraries.
In the pop-up window, clicked Add Folder and navigated to the downloaded library folder.
Link to Fab Library

Photo: Adding Libraries

Additionally, I configured the library path for proper routing:
Preferences > Configure Path > Select Downloaded Library Folder.

Photo: Adding Paths

Creating Schematic

Opened Schematic Editor and added the XIAO RP2040 microcontroller using the Symbol Tool.

Photo: Adding XIAO RP2040 Microcontroller

Added other components:
Two resistors
LED
Push Button
Power connections
Pins

Photo: Adding more components

Connecting Components

Used the Place Global Labels Tool instead of direct wiring to keep the design clean.
Named pins according to their function.
Before making connections, I extended RP2040 pins into categories: Analog, UART, SPI and I2C plus power pins to each category

Photo: Wiring Connection

Closed unused pins using the Place No Connect Flag tool.

Photo: Done with wire Connection

Assigning Foot Prints

Clicked on Assign Footprints.
Verified the assigned footprints in the pop-up window.
If needed, manually selected the correct footprint for each component.
Applied and saved changes: Apply & Save > OK.

Photo: Assigning Foot prints

Switching to PCB Editor

After foot prints I switched to PCB Editor.
In PCB Editor, I updated the PCB from schematic editor and placed it in editing area.

Photo: Adding the PCB in the PCB Editor

Optimized component placement for better track routing.

Photo: Aligning components

Routing PCB

Set track thickness to 1mm.

Photo: Adding Tracks

Added tracks carefully, ensuring minimal crossover.
When necessary, returned to Schematic Editor to realign pins for better routing.
Every update in the schematic required updating PCB in PCB Editor before applying changes.

Photo: Editing pins alignment
Photo: Adding Tracks

After completing track routing, added edge cuts to define the PCB shape.

Photo: Adding edge cuts after completing tracks

Viewed the final PCB design in 3D mode to check for any improvements.

Photo: PCB 3D View

Files

Download zip file

Electronic Production