কলা
সৌন্দর্য এবং সুস্থতা
ক্রাফট
সংস্কৃতি ও ইতিহাস
বিনোদন
পরিবেশ
খাদ্য ও পানীয়
সবুজ ভবিষ্যৎ
রিভার্স ইঞ্জিনিয়ারিং
বিজ্ঞান
খেলাধুলা
টেকনোলজি
পরিধানযোগ্য
Making a LilyPad Night-Light
Ed

দ্বারা বনাযা গযা

Ed

13. জুলাই 2026FI

Making a LilyPad Night-Light

Give your fabric a sense of sight. A LilyPad light sensor tells the microcontroller how bright the room is, and a short program switches an LED on when it gets dark. Sew it into a bag, a hat or a bedside patch for a soft glow that only appears at night — your first sensor-driven wearable.

মধ্যবর্তী
1-2 hours

নির্দেশ

1

Sew the board, sensor and LED

Sew a LilyPad Arduino, a LilyPad light sensor and a LilyPad LED onto felt. Wire it: the LED's + tab to pin 5 and its - tab to -; the sensor's + tab to the board's +, its - tab to -, and its signal (S) tab to analog pin A2. Keep the power (+), ground (-) and signal lines from crossing anywhere.

ইস চরণ কে লিএ সামগ্রী:

LilyPad Arduino Simple BoardLilyPad Arduino Simple Board1 টুকরা
LilyPad Light SensorLilyPad Light Sensor1 টুকরা
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 programmer

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

ইস চরণ কে লিএ সামগ্রী:

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 night-light sketch

Paste this sketch and click Upload. It reads the light sensor and turns the LED on whenever the room is darker than the threshold.

lilypad_night_light.inoarduino
// LilyPad night-light: LED comes on when it gets dark.
// LED on pin 5, light sensor signal on analog pin A2.

const int LED_PIN = 5;       // LED
const int LIGHT_PIN = A2;    // light sensor signal
int threshold = 400;        // lower = waits for darker; raise to trigger sooner

void setup() {
  pinMode(LED_PIN, OUTPUT);
}

void loop() {
  int light = analogRead(LIGHT_PIN);  // 0 (dark) .. 1023 (bright)

  if (light < threshold) {
    digitalWrite(LED_PIN, HIGH);       // dark -> LED on
  } else {
    digitalWrite(LED_PIN, LOW);        // bright -> LED off
  }

  delay(100);
}
4

Calibrate the threshold

Cover the sensor with your hand — the LED should come on; in a bright room it should stay off. If it triggers too early or too late, change the threshold number in the sketch and re-upload: higher turns it on in more light, lower waits for darker.

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 bag, hat or cushion — it now glows on its own whenever the light drops.

ইস চরণ কে লিএ সামগ্রী:

LilyPad Coin Cell Battery Holder - w/Switch - 20mmLilyPad Coin Cell Battery Holder - w/Switch - 20mm1 টুকরা
CR2032 Coin Cell BatteryCR2032 Coin Cell Battery1 টুকরা

সামগ্রী

10

আবশ্যক উপকরণ

1
আনুমানিক মোট
$98.00

সম্পর্কিত ব্লুপ্রিন্ট

এই ব্লুপ্রিন্টগুলি জ্ঞান ভাগ করে — কৌশল, উপকরণ বা নীতি

CC0 পব্লিক ডোমেন

যহ ব্লূপ্রিংট CC0 কে তহত জারী কিযা গযা হৈ। আপ বিনা অনুমতি মাঁগে ইস কার্য কো কিসী ভী উদ্দেশ্য কে লিএ কॉপী, সংশোধিত, বিতরিত ঔর উপযোগ করনে কে লিএ স্বতংত্র হৈং।

উনকে ব্লূপ্রিংট কে মাধ্যম সে উত্পাদ খরীদকর মেকর কা সমর্থন করেং জহাঁ বে মেকর কমীশন কমাতে হৈং জো বিক্রেতাওং দ্বারা নির্ধারিত হোতা হৈ, যা ইস ব্লূপ্রিংট কা নযা সংস্করণ বনাএঁ ঔর রাজস্ব সাঝা করনে কে লিএ ইসে অপনে ব্লূপ্রিংট মেং কনেক্শন কে রূপ মেং শামিল করেং।

চর্চা

(0)

লॉগ ইন করেং চর্চা মেং শামিল হোনে কে লিএ

টিপ্পণিযাঁ লোড হো রহী হৈং...