ศิลปะ
ความงามและสุขภาพ
งานฝีมือ
วัฒนธรรมและประวัติศาสตร์
ความบันเทิง
สิ่งแวดล้อม
อาหารและเครื่องดื่ม
อนาคตสีเขียว
วิศวกรรมย้อนรอย
วิทยาศาสตร์
กีฬา
เทคโนโลยี
อุปกรณ์สวมใส่
Making a Color-Changing LilyPad Patch
Ed

สร้างโดย

Ed

13. กรกฎาคม 2026FI
0
0
0
0
0

Making a Color-Changing LilyPad Patch

Sew a patch that glows in any color. A single RGB LED holds red, green and blue elements; by fading each one with the microcontroller's PWM pins you mix millions of colors and cycle through the rainbow. The e-textile version of the classic RGB colour-mixing project.

ระดับกลาง
1-2 hours

คำแนะนำ

1

Sew the board and RGB LED

Sew a LilyPad Arduino onto felt. The RGB LED has four legs — bend each into a small loop so it can be sewn. Wire the common cathode (the longest leg) to -, and the red, green and blue legs to pins 5, 6 and 9. Keep the four lines from touching each other.

วัสดุสำหรับขั้นตอนนี้:

LilyPad Arduino Simple BoardLilyPad Arduino Simple Board1 ชิ้น
LED - RGB Diffused Common Cathode - 5mmLED - RGB Diffused Common Cathode - 5mm1 ชิ้น
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. 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 color-mixing sketch

Paste this sketch and upload. It fades the LED through red, green, blue and the mixes using analogWrite (PWM).

lilypad_color_changing.inoarduino
// Mix colors on a common-cathode RGB LED.
// Red/Green/Blue legs on PWM pins 5, 6, 9; common cathode to - (GND).

const int RED_PIN = 5;
const int GREEN_PIN = 6;
const int BLUE_PIN = 9;

void setColor(int r, int g, int b) {
  analogWrite(RED_PIN, r);     // 0 = off, 255 = full
  analogWrite(GREEN_PIN, g);
  analogWrite(BLUE_PIN, b);
}

void setup() {
  pinMode(RED_PIN, OUTPUT);
  pinMode(GREEN_PIN, OUTPUT);
  pinMode(BLUE_PIN, OUTPUT);
}

void loop() {
  setColor(255, 0, 0);   delay(500);  // red
  setColor(0, 255, 0);   delay(500);  // green
  setColor(0, 0, 255);   delay(500);  // blue
  setColor(255, 255, 0); delay(500);  // yellow
  setColor(0, 255, 255); delay(500);  // cyan
  setColor(255, 0, 255); delay(500);  // magenta
  setColor(255, 255, 255); delay(500);// white
}
4

Watch it cycle, then mix your own

The LED fades through the colors on its own. Make your own by changing the three numbers in setColor(red, green, blue) — each 0–255. Note: at the LilyPad's lower voltage blue and green look a little dimmer than red, which is normal for RGB LEDs.

5

Go wireless and wear it

Plug a 3.7 V LiPo into the LilyPad Arduino's JST connector and switch on — the higher voltage also makes the colors brighter. Sew the felt onto a bag or costume for a colour-changing glow.

วัสดุสำหรับขั้นตอนนี้:

LiPo Battery 3.7V 1000mAh (JST Connector)LiPo Battery 3.7V 1000mAh (JST Connector)1 ชิ้น

วัสดุ

8

เครื่องมือที่จำเป็น

1
ยอดรวมประมาณ
$110.00

บลูพริ้นท์ที่เกี่ยวข้อง

บลูพริ้นท์เหล่านี้แบ่งปันความรู้ — เทคนิค วัสดุ หรือหลักการ

CC0 สาธารณสมบัติ

พิมพ์เขียวนี้เผยแพร่ภายใต้ CC0 คุณสามารถคัดลอก แก้ไข แจกจ่าย และใช้งานผลงานนี้เพื่อวัตถุประสงค์ใดก็ได้ โดยไม่ต้องขออนุญาต

สนับสนุนเมกเกอร์โดยซื้อสินค้าผ่านพิมพ์เขียวของพวกเขา ซึ่งพวกเขาจะได้รับ ค่าคอมมิชชันเมกเกอร์ ที่ผู้ขายกำหนด หรือสร้างเวอร์ชันใหม่ของพิมพ์เขียวนี้และรวมเป็นการเชื่อมต่อในพิมพ์เขียวของคุณเพื่อแบ่งรายได้

การสนทนา

(0)

เข้าสู่ระบบ เพื่อร่วมการสนทนา

กำลังโหลดความคิดเห็น...