예술
뷰티 및 웰니스
공예
문화 및 역사
엔터테인먼트
환경
음식 및 음료
그린 퓨처
역공학
과학
스포츠
기술
웨어러블
Blinking an LED with LilyPad Arduino
Ed

작성자

Ed

13. 7월 2026FI
10
0
0
0
0

Blinking an LED with LilyPad Arduino

Step up from a plain sewn circuit to a sewable computer. The LilyPad Arduino is a washable microcontroller you program from your PC, then run on a coin cell — so your fabric can blink, fade and react on its own. This project sews an LED to the board and uploads the classic 'blink' sketch: the gateway to every sensor-driven wearable that follows.

중급
1 hour

안내

1

Sew the LilyPad Arduino and an LED

Sew a LilyPad Arduino Simple board and a LilyPad LED onto felt with conductive thread: the LED's + tab to numbered pin 5, and the LED's - tab to the board's - tab. Loop 3–4 times through each hole, trim tails, and keep the two lines from crossing.

이 단계의 재료:

LilyPad Arduino Simple BoardLilyPad Arduino Simple Board1
LilyPad LED - 5 pcsLilyPad LED - 5 pcs1
Conductive Thread - 60g (Stainless Steel)Conductive Thread - 60g (Stainless Steel)1 실패
Hand Sewing Needles (Assorted, 30-Pack)Hand Sewing Needles (Assorted, 30-Pack)1
Wool Felt SheetWool Felt Sheet1
2

Connect the FTDI programmer

Plug a LilyPad FTDI Basic Breakout onto the board's 6-pin programming header (line up GND to GND, DTR to DTR) and connect it to your computer with a USB cable. Install the free Arduino IDE, then choose the LilyPad Arduino board and the FTDI's serial port under Tools.

이 단계의 재료:

LilyPad FTDI Basic Breakout - 5VLilyPad FTDI Basic Breakout - 5V1
SparkFun Cerberus USB Cable - 1.8 meterSparkFun Cerberus USB Cable - 1.8 meter1

필요한 도구:

Computer with Arduino IDEComputer with Arduino IDE
3

Upload the blink sketch

Paste this sketch into the Arduino IDE and click Upload. It flashes the LED on pin 5 on and off twice a second.

lilypad_blink.inoarduino
// Blink an LED sewn to a LilyPad Arduino
// The LED's + tab is stitched to pin 5, its - tab to the board's - (GND).

const int LED_PIN = 5;   // LilyPad LED sewn to pin 5

void setup() {
  pinMode(LED_PIN, OUTPUT);   // pin 5 drives the LED
}

void loop() {
  digitalWrite(LED_PIN, HIGH); // LED on
  delay(500);                  // wait half a second
  digitalWrite(LED_PIN, LOW);  // LED off
  delay(500);                  // wait half a second
}

// TRY THIS:
// - delay(100) for fast blinking, delay(2000) for slow
// - different ON and OFF times: HIGH delay(800), LOW delay(200)
4

Go wireless on a coin cell

Unplug the FTDI. Sew a LilyPad coin-cell battery holder to the board — + tab to +, - tab to - — and drop in a CR2032. Switch it on and the LED blinks on its own, no computer attached. Your fabric now runs its own program.

이 단계의 재료:

LilyPad Coin Cell Battery Holder - w/Switch - 20mmLilyPad Coin Cell Battery Holder - w/Switch - 20mm1
CR2032 Coin Cell BatteryCR2032 Coin Cell Battery1
5

Experiment

Re-attach the FTDI and change the sketch: adjust the delays for a heartbeat rhythm, or sew a second LED to another pin and blink them in turn. This is the base every LilyPad sensor project builds on.

재료

9

필요 도구

1
예상 총액
₩1,275

관련 블루프린트

이 블루프린트들은 지식을 공유합니다 — 기술, 재료 또는 원리

CC0 퍼블릭 도메인

이 블루프린트는 CC0로 공개되었습니다. 어떤 목적으로든 자유롭게 복사, 수정, 배포 및 사용할 수 있습니다.

제품 구매를 통해 메이커를 지원하세요. 판매자가 설정한 메이커 커미션 을 받거나, 이 블루프린트의 새로운 반복을 만들어 연결로 포함시킬 수 있습니다.

토론

(0)

로그인 하여 토론에 참여하세요

댓글 로딩 중...