Wearable Electronics and E-Textiles for Makers: Conductive Thread, Sensors, and Washable Circuits
Everything else in our electronics coverage assumes a rigid board, solder joints, and a permanent enclosure. E-textiles flip that: the circuit is sewn into fabric with conductive thread, components are designed to be stitched rather than soldered, and the whole assembly has to survive being worn, flexed, and occasionally washed. It's a genuinely different design discipline from PCB or perfboard work, and it's a natural fit for a shop that already has a laser cutter (for patterns and templates) and a 3D printer (for rigid component housings) alongside the electronics bench.
Core Materials
- Conductive thread — stainless-steel-fiber thread (like the common 2-ply or 4-ply stainless conductive threads) carries current through stitched traces. It has real resistance per foot, unlike copper wire, so keep traces short and consider trace resistance in anything current-hungry.
- Conductive fabric and hook-and-loop — used for larger contact pads, switches, and pressure sensors made from layered conductive and non-conductive fabric.
- Snaps and eyelets — conductive metal snaps double as both a mechanical fastener and an electrical connector, commonly used to make battery modules or sensor boards removable for washing.
Microcontrollers Built for This
Standard dev boards have pin headers meant for jumper wires, not needles. Boards designed for e-textiles have large, rounded sew-tabs instead:
BoardNotes LilyPad Arduino (and clones)ATmega328P-based, the original e-textile dev board, large sew-tab pads, low pin count Adafruit Gemma / FloraATtiny85 (Gemma, very minimal) or ATmega32U4 (Flora, USB + more I/O), round form factor Adafruit Circuit Playground BluefruitNot sew-tab native, but often mounted in a fabric pocket with wired sensors when BLE and more processing power are neededIf a project needs WiFi or serious processing (image classification, complex effects timing), it's usually easier to house a small ESP32 board in a 3D-printed pocket enclosure with wired connections to sewn sensors than to find an e-textile-native ESP32 board — that hybrid approach (rigid brain, soft periphery) is the most practical pattern for anything beyond simple LED and sensor projects.
Circuit Design on Fabric
Conductive thread traces behave like exposed bare wire — two traces that cross without insulation will short. Plan your stitch layout the way you'd plan a single-layer PCB: route traces to avoid crossings where possible, and where a crossing is unavoidable, insulate one trace with a dab of fabric paint, a scrap of iron-on interfacing, or by routing one trace on the reverse side of the fabric. Keep positive and negative traces separated by real distance, not just a layer of fabric — sweat and washing both reduce the fabric's insulating value over time.
Sewable Components
- NeoPixel sequins and strips — individually addressable RGB LEDs in a sewable sequin form factor, driven the same way as rigid WS2812B strips (see our LED strip programming guide for protocol details).
- Vibration motors for haptic feedback, usually driven through a small transistor rather than directly from an I/O pin.
- Sensors — light sensors, flex sensors (resistance changes with bend angle), and simple pressure sensors built from conductive fabric sandwiches are all common in wearable projects and read the same way as their rigid equivalents, through an analog input.
Power
Coin cell holders (sewable, for a CR2032) work for low-current, short-runtime projects like a handful of LEDs. For anything with meaningful current draw or runtime expectations, a small LiPo pouch cell with a proper charge/protection circuit is the better choice — but see the safety section below before strapping a lithium cell to a garment.
Washability
Nothing with an exposed circuit board, an unprotected battery, or bare conductive thread should go through a washing machine. The standard approach is modularity: design the electronics module (microcontroller, battery, and any rigid sensors) to snap or button off the garment entirely before washing, leaving only the sewn thread traces and any washable components (most LEDs and basic sensors tolerate gentle hand-washing once the electronics module is removed) on the fabric. Always hand wash rather than machine wash even the "washable" portion, and let it air dry completely before reconnecting power.
Safety
- Batteries worn on the body — a punctured or short-circuited LiPo cell is a fire hazard anywhere, but that risk is worse in direct contact with skin or clothing. Use cells with a proper protection circuit, keep the battery module rigid and enclosed (not directly stitched into flexible fabric where it can be bent or crushed), and never leave a wearable project charging unattended.
- Moisture and sweat — both are conductive enough to cause shorts or corrosion on exposed thread traces over time. This is another reason to keep the power source removable rather than permanently integrated.
- Skin contact — avoid routing bare conductive thread traces against bare skin, especially anywhere near the power source; insulate exposed traces with fabric paint or a thread cover stitch.
- Projects involving children — use coin-cell power with a properly enclosed, screw-secured battery holder rather than an easily-removed sewable holder, since loose coin cells are a swallowing hazard.
Where This Overlaps With the Rest of the Shop
A laser cutter is genuinely useful here beyond decoration — cutting felt or fabric templates with exact hole placement for components keeps stitching lines consistent across multiple copies of a design, and our fabric/felt laser settings guide covers the settings for that. A 3D printer earns its keep making rigid battery pockets, sensor housings, and switch guards that protect the delicate parts of an otherwise soft, flexible build.
E-textiles are a small niche relative to the rest of this site's coverage, but the design discipline — thinking about your circuit as stitched traces instead of copper, and about your enclosure as fabric instead of plastic — is worth knowing if you ever want to build something that lives on a person instead of a workbench.