예술
뷰티 및 웰니스
공예
문화 및 역사
엔터테인먼트
환경
음식 및 음료
역공학
과학
스포츠
기술
웨어러블
Bubble Wrap
Karen

작성자

Karen

22. 9월 2026SE
0
0
0
0
0

Bubble Wrap

In 1957 Alfred Fielding and Marc Chavannes sealed two shower curtains together with air bubbles trapped between them, hoping to sell a textured wallpaper. It did not sell as wallpaper, nor as greenhouse insulation; it sold as packaging, and their company became Sealed Air. **US 3,142,599**, "Method for making laminated cushioning material", Chavannes, assigned to Sealed Air, filed 27. November 1959, granted 28. July 1964: plastic film heated above its softening point but below melting, drawn into the "discrete depressions" of a moulding roller, and sealed to a second film so each pocket traps air. **You measure what the air does**: an Arduino accelerometer rides a wooden block, and for bare floor, 1, 2 and 4 layers and 2 popped layers you find the drop height that reaches 16 g - and from it, how far the air lets the block slow down.
중급
2 hours

안내

1

The drop block

Cut a pine block 100 x 100 x 40 mm and weigh it. Tape the MPU-6050 flat on top, and zip-tie its four wires along the block so they cannot pull the sensor.

이 단계의 재료:

소나무 판재소나무 판재1
마스킹 테이프마스킹 테이프1
케이블 타이케이블 타이4

필요한 도구:

손톱(핸드소)손톱(핸드소)
디지털 주방 저울디지털 주방 저울
2

Wire and flash

Use 1 m of jumper wire so the block can fall freely: VCC 5V, GND, SDA A4, SCL A5. Microswitch between D2 and GND. Open the serial monitor at 115200.
drop_peak_g.inocpp
// Drop-test peak-g meter - batch 98, US 3,142,599
// MPU-6050 on I2C (SDA A4, SCL A5, VCC 5V, GND). Microswitch D2 -> GND arms a 3 s capture.
// Range +/-16 g: a reading of 16.0 means "16 g or more" - the test uses that limit as its threshold.
#include <Wire.h>

const uint8_t MPU = 0x68;
const int ARM_PIN = 2;

void writeReg(uint8_t reg, uint8_t val) {
  Wire.beginTransmission(MPU); Wire.write(reg); Wire.write(val); Wire.endTransmission();
}

float readG() {
  Wire.beginTransmission(MPU); Wire.write(0x3B); Wire.endTransmission(false);
  Wire.requestFrom(MPU, (uint8_t)6);
  int16_t ax = (Wire.read() << 8) | Wire.read();
  int16_t ay = (Wire.read() << 8) | Wire.read();
  int16_t az = (Wire.read() << 8) | Wire.read();
  const float LSB = 2048.0;          // counts per g at +/-16 g
  return sqrt(sq(ax / LSB) + sq(ay / LSB) + sq(az / LSB));
}

void setup() {
  Serial.begin(115200);
  pinMode(ARM_PIN, INPUT_PULLUP);
  Wire.begin();
  Wire.setClock(400000);
  writeReg(0x6B, 0x00);              // wake up
  writeReg(0x1A, 0x00);              // widest digital low-pass (about 260 Hz)
  writeReg(0x1C, 0x18);              // accelerometer +/-16 g
  Serial.println(F("Press the switch, then drop within 3 s."));
}

void loop() {
  if (digitalRead(ARM_PIN) == HIGH) return;
  delay(300);                        // let go of the switch
  float peak = 0;
  unsigned long n = 0, t0 = millis();
  while (millis() - t0 < 3000) {
    float g = readG();
    if (g > peak) peak = g;
    n++;
  }
  Serial.print(F("peak "));
  Serial.print(peak, 1);
  Serial.print(F(" g   ("));
  Serial.print(n / 3);
  Serial.println(F(" samples/s)"));
}

이 단계의 재료:

Triple Axis Accelerometer and Gyro Breakout - MPU-6050Triple Axis Accelerometer and Gyro Breakout - MPU-60501
마이크로 스위치(레버식)마이크로 스위치(레버식)1
Dupont 점퍼 와이어 세트 (수-암)Dupont 점퍼 와이어 세트 (수-암)1 세트

필요한 도구:

Arduino Uno R3Arduino Uno R3
SparkFun Cerberus USB Cable - 1.8 meterSparkFun Cerberus USB Cable - 1.8 meter
3

Cut the cushions

Cut 200 x 200 mm squares of bubble wrap: seven for the 1, 2 and 4 layer stacks, two more to pop completely for the control.

이 단계의 재료:

뽁뽁이뽁뽁이1

필요한 도구:

가위가위
4

Climb to 16 g

Tape a tape measure up the wall. For each landing - bare floor, 1, 2 and 4 layers, the popped pair - drop the block flat, sensor up, from 10 mm, then 20, 40, 60 mm and so on, pressing the switch before each drop. Record the lowest height that reads 16.0 g. Use fresh wrap if bubbles burst.

필요한 도구:

줄자줄자
5

Stopping distance from your ladder

Jupyter 노트북 불러오는 중…
6

History & Context

**What the patent specifies:** heated thermoplastic film formed into a roller's depressions and laminated to a second film to seal in air, continuously. **Modern build (derived):** commercial polyethylene bubble wrap. Its big early customer was IBM, shipping the 1401 computer. Its limits: bubbles slowly leak and burst under long static loads, it is bulky to store, and most of it is thrown away after one use.
단계 6 - Image 1

재료

7

필요 도구

6
예상 총액
만든 사람이 산 것. 가격이 없는 재료는 구매하는 곳에서 구하면 됩니다.
₩490

관련 블루프린트

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

CC0 퍼블릭 도메인

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

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

토론

(0)

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

댓글 로딩 중...