Final video

Jack LaRovere Abrams and Yizhe Ying

Mid-Review Slides

oliver choi and Charles Juhas

Giant Sequoia-inspired infrastructure

Defy The Flames

Pacific Palisades, LA, on Jan 7, 2025

Charlie Juhas and Oliver Choi

working code

Jack LaRovere Abrams and Yizhe Ying

const int sensorPin = A0;

const int ledPins[4] = {2, 4, 6, 8};  // Updated LED pin numbers


void setup() {

    Serial.begin(9600);

    for (int i = 0; i < 4; i++) {

        pinMode(ledPins[i], OUTPUT);

    }

}


void loop() {

    int moisture = analogRead(sensorPin);

    Serial.print("Moisture Level: ");

    Serial.println(moisture);


    int ledCount = map(moisture, 400, 750, 0, 4);  // Adjust range based on sensor readings

    ledCount = constrain(ledCount, 0, 4);  // Ensure value stays between 0 and 4


    for (int i = 0; i < 4; i++) {

        if (i < ledCount) {

            digitalWrite(ledPins[i], HIGH);

        } else {

            digitalWrite(ledPins[i], LOW);

        }

    }


    delay(1000);

}

New Arduino Code

oliver choi and Charles Juhas
EnhancedHB9OCJ.ino

We created a new code (made by the one and only oliver choi) that displays messages in the Serial Monitor so that it is easy to know when the pump system is activated and when the pump is on/off. 

Future Plans

Zengzi Li and Cheng Pang

Friday - Incorporate OC's feedback, strap a rubber band to the gear and the wooden piece, Laser cut the rooftops and the retainer.

Sat&Sun - Final Assembly,  Finish slides

Monday - Final Assembly,  Finish slides (If not done), final polish

Tuesday - Presentation

burning experiment video & data

Charles Juhas and oliver choi



w

floating “island” basin laser cut

oliver choi and Charles Juhas
Floating “island” basin.dxf

c-t 6

Diagram of house (layers) for biomimicry slide

oliver choi and Charles Juhas
diagram of house (layers) for biomimicry slide.dxf

c-t 4

Exterior Sketches

oliver choi and Charles Juhas

Double Pump Vid

Charles Juhas and oliver choi