Albert & Wayne

Parameter Test Code

Davison Wayne and Aden Albert

const int moistureSensorPin = A0; // Change this to the pin for your sensor


void setup() {

  Serial.begin(9600); // Start serial communication

}


void loop() {

  int moistureValue = analogRead(moistureSensorPin); // Read the sensor value

  Serial.println(moistureValue); // Print the value to the Serial Monitor

  delay(500); // Small delay for readability

}

Full code test

Davison Wayne and Aden Albert

const int moistureSensorPin = A0;  // Signal pin of the moisture sensor

const int ledPin = 13;             // LED connected to pin 8

const int moistureThreshold = 1; // Adjust based on testing


void setup() {

  Serial.begin(9600);         // Start Serial Monitor

  pinMode(ledPin, OUTPUT);    // Set LED pin as output

  pinMode(moistureSensorPin, INPUT); // Set sensor pin as input

}


void loop() {

  int moistureValue = analogRead(moistureSensorPin); // Read sensor value

  Serial.print("Moisture Value: ");

  Serial.println(moistureValue); // Print sensor value for debugging

  

  // Check moisture level

  if (moistureValue < moistureThreshold) {

    digitalWrite(ledPin, HIGH); // Turn on LED if soil is dry

  } else {

    digitalWrite(ledPin, LOW);  // Turn off LED if soil is moist

  }


  delay(500); // Wait 0.5 seconds before the next reading

}

Final

Davison Wayne and Aden Albert

Plugging Holes with Nature:

Self Sealing Sap Ships

Aden Albert and Davison Wayne


With Significant help from Mr. D and Chat GPT

Arduino Test

Davison Wayne and Aden Albert

Feedback From Midreview

Davison Wayne and Aden Albert

show sap and mechanisms in a final presentation

gif/video for the final

say favorite gpt feedback

incorporate areas with humidity sensors

Albert and Wayne

Davison Wayne and Aden Albert

Albert and Wayne

Sealing the Breach: Sap for Ship Sealing Safety

Rapid Prototype

Davison Wayne and Aden Albert

Cardboard Represents Hardened Concrete while hot glue is cement.

Cement Mix

Davison Wayne and Aden Albert

3d Print

Davison Wayne and Aden Albert

Our Sketch

Aden Albert and Davison Wayne