アート
美容とウェルネス
工芸
文化と歴史
エンターテインメント
環境
食品と飲料
グリーンフューチャー
リバースエンジニアリング
科学
スポーツ
テクノロジー
ウェアラブル
Blinking an LED with LilyPad Arduino
Ed

作成者

Ed

13. 7月 2026FI
7
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
見積もり合計
¥137

関連ブループリント

これらのブループリントは知識を共有しています — 技術、材料、原理

CC0 パブリックドメイン

このブループリントはCC0で公開されています。許可を求めずに、自由にコピー、修正、配布、あらゆる目的で使用できます。

メイカーを応援するには、ブループリント経由で製品を購入してください。メイカーには メイカーコミッション がベンダーにより設定されています。または、このブループリントの新しいイテレーションを作成し、自分のブループリントにコネクションとして含めて収益を共有できます。

ディスカッション

(0)

ログイン してディスカッションに参加

コメントを読み込み中...