The seed for this project was the idea of designing inflatable floating architecture. I do summer as an architecture tour guide on the Chicago River, after all. I decided to invite along anyone who wants join me on the journey, via YouTube. Keep reading to follow where the adventure takes us, as well as how to recreate the technologies I use. And, as they say on YouTube, please like and subscribe!
Join me as I experiment with vinyl cement and test whether it's a reliable method of creating a leak-free little inflatable dumpling.
Can my little inflatable "dumplings" bend and fold and form complex shapes?
int pump = 9;
void setup() {
pinMode(pump, OUTPUT);
}
void loop() {
digitalWrite(pump, HIGH);
}
int pump = 9;
void setup() {
pinMode(pump, OUTPUT);
}
void loop() {
for(int i=50; i<255; i=i+20){
analogWrite(pump, i);
delay(200);
}
for(int i=255; i>50; i=i-20){
analogWrite(pump, i);
delay(200);
}
}
Let's look at both digital and analog controls for the pump, different inflation behaviors, and blow stuff up til it breaks.
How do pressure sensors work? More importantly, how does air pressure work? My struggles and learnings through failure, on display for your viewing pleasure.
Let's build something BIG. What starts out as a raft turns into a giant saddle shape: the hyperbolic parabaloid. Also, I model some weird looks.
Inspired by my giant sun hat from the previous week, I set out to make a wig out of a bright yellow shower curtain. I also test a new glue: Gorilla PVC Glue.
In which I make a much larger wig, to test developable geometries-- in other words, layers of flat material that inflate into more complex shapes. I also try to get better at Gorilla PVC Glue... and fail.
Do I really need vinyl cement to prototype inflatables? Can I use heat sealing tools that are way less noxious?