AJB2K3
Published © CC BY-SA

ETextiles with the M5Stamp

Getting started with ETextiles using the M5Stamp and the Stitch-N-Stamp pcbs.

BeginnerFull instructions provided1 hour617
ETextiles with the M5Stamp

Things used in this project

Hardware components

M5Stack M5Stamp Pico D4
×1
Stich-N-Stamp PCB
×1

Software apps and online services

Thonny
MicroPython
MicroPython

Hand tools and fabrication machines

Soldering iron (generic)
Soldering iron (generic)

Story

Read more

Schematics

Very Simple Schematic.

This very simple schematic is all that's needed for the Stitch-N-Stamp.

Code

Simple Blink

MicroPython
Blinks a led connected to pin 26.
import machine
import time

pin12 = machine.Pin(26, machine.Pin.OUT)
for i in range(10):
    pin12.value(1)
    time.sleep(0.5)
    pin12.value(0)
    time.sleep(0.5)

Credits

AJB2K3

AJB2K3

46 projects • 29 followers
I have always had an interest in electronics but having failed my school exams, it has taken me 20+ years to produce products to share.

Comments