فن
خوبصورتی اور تندرستی
دستکاری
ثقافت اور تاریخ
تفریح
ماحول
خوراک اور مشروبات
سبز مستقبل
ریورس انجینئرنگ
سائنسز
کھیل
ٹیکنالوجی
پہننے والے آلات
Making a LilyPad Musical Patch
Ed

تخلیق کار

Ed

13. جولائی 2026FI
0
0
0
0
0

Making a LilyPad Musical Patch

Sew a patch that plays a tune. A LilyPad buzzer and a button let the microcontroller sing a short melody whenever you press it — a musical badge, a fabric greeting card, or a costume piece. This project introduces the buzzer and the Arduino tone() function that turns pin signals into notes.

درمیانہ
1-2 hours

ہدایات

1

Sew the board, buzzer and button

Sew a LilyPad Arduino, a LilyPad buzzer and a LilyPad button onto felt. Wire it: the buzzer's + tab to pin 9 and its - tab to -; the button's tabs to analog pin A2 and to -. Keep the lines from crossing.

اس مرحلے کے لیے مواد:

LilyPad Arduino Simple BoardLilyPad Arduino Simple Board1 piece
LilyPad BuzzerLilyPad Buzzer1 piece
LilyPad Button BoardLilyPad Button Board1 piece
Conductive Thread - 60g (Stainless Steel)Conductive Thread - 60g (Stainless Steel)1 spool
Hand Sewing Needles (Assorted, 30-Pack)Hand Sewing Needles (Assorted, 30-Pack)1 pack
Wool Felt SheetWool Felt Sheet1 sheet
2

Connect the programmer

Plug the LilyPad FTDI onto the programming header and connect the USB cable. Open the Arduino IDE and select the LilyPad Arduino board and its serial port.

اس مرحلے کے لیے مواد:

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

درکار اوزار:

Computer with Arduino IDEComputer with Arduino IDE
3

Upload the melody sketch

Paste this sketch and upload. Pressing the button plays a short rising scale on the buzzer.

lilypad_musical_patch.inoarduino
// Press the button to play a short tune on the LilyPad buzzer.
// Buzzer + on pin 9, button between pin A2 and - (GND).

const int BUZZER_PIN = 9;
const int BUTTON_PIN = A2;   // read as a digital input, pressed = LOW

// A short tune: note frequencies (Hz) and how long each plays (ms)
int melody[]    = { 262, 294, 330, 349, 392 };  // C D E F G
int durations[] = { 200, 200, 200, 200, 400 };

void setup() {
  pinMode(BUZZER_PIN, OUTPUT);
  pinMode(BUTTON_PIN, INPUT_PULLUP);  // built-in pull-up: unpressed reads HIGH
}

void loop() {
  if (digitalRead(BUTTON_PIN) == LOW) {   // button pressed
    for (int i = 0; i < 5; i++) {
      tone(BUZZER_PIN, melody[i], durations[i]);
      delay(durations[i] + 50);
    }
    noTone(BUZZER_PIN);
  }
}
4

Press to play, then compose

Press the button — you should hear the five notes. Change the tune by editing the melody[] frequencies (higher number = higher note) and the durations[] in milliseconds, then re-upload. Add more notes to both arrays to make a longer song.

5

Go wireless and wear it

Unplug the FTDI, sew a LilyPad coin-cell holder to the board (+ to +, - to -), drop in a CR2032 and switch on. Sew the felt onto a badge or card — press it to play your tune anywhere.

اس مرحلے کے لیے مواد:

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

مواد

10

درکار اوزار

1
Estimated Total
$96.00

متعلقہ بلیو پرنٹ

یہ بلیو پرنٹ علم بانٹتے ہیں — تکنیک، مواد یا اصول

CC0 پبلک ڈومین

یہ بلیو پرنٹ CC0 کے تحت جاری کیا گیا ہے۔ آپ اجازت لیے بغیر اس کام کو نقل، ترمیم، تقسیم اور کسی بھی مقصد کے لیے استعمال کرنے کے لیے آزاد ہیں۔

میکر کی حمایت کریں ان کے بلیو پرنٹ کے ذریعے پروڈکٹس خرید کر جہاں وہ میکر کمیشن وینڈرز کی طرف سے مقرر، کماتے ہیں، یا اس بلیو پرنٹ کی نئی تکرار بنائیں اور آمدنی شیئر کرنے کے لیے اسے اپنے بلیو پرنٹ میں کنکشن کے طور پر شامل کریں۔

بحث

(0)

لاگ ان بحث میں شامل ہونے کے لیے

تبصرے لوڈ ہو رہے ہیں...