Skip to content

Final Project

This week I worked on defining my final project idea and started to getting used to the documentation process.

Research

“Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.”

“Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.”

2D and 3D Modeling

Add here your modeling and design.

Some other section

This is an updated text.

Materials

Qty Description Price Link Notes
1 Material one 22.00 $ http://amazon.com/test Order many
1 Material two 22.00 $ http://amazon.com/test
1 Material three 22.00 $ http://amazon.com/test
1 Material five 22.00 $ http://amazon.com/test
1 Material eight 22.00 $ http://amazon.com/test
1 Material twelve 22.00 $ http://amazon.com/test
1 Material eleven 22.00 $ http://amazon.com/test

Code Example

Use the three backticks to separate code.

// the setup function runs once when you press reset or power the board
void setup() {
  // initialize digital pin LED_BUILTIN as an output.
  pinMode(LED_BUILTIN, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
  digitalWrite(LED_BUILTIN, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(1000);                       // wait for a second
  digitalWrite(LED_BUILTIN, LOW);    // turn the LED off by making the voltage LOW
  delay(1000);                       // wait for a second
}

Video

From Vimeo

Sound Waves from George Gally (Radarboy) on Vimeo.

From Youtube

3D Models

#include <EduIntro.h>

DHT11 dht11(A0); //creating the object sensor temp & Hume

int C;   // temperature C readings are integers
float F; // temperature F readings are returned in float format
int H;   // humidity readings are integers
int sensorThres = 200; 


void setup() {
  // initialize digital pin Busser as an output.
  pinMode(10, OUTPUT);
  // initialize serial communications at 9600 bps
  Serial.begin(9600);
}


void loop() {

  // read the input on analog pin 0:
  int sensorValue = analogRead(A5);
  // print out the value you read:
  Serial.println(sensorValue);
  delay(1);  // delay in between reads for stability


  dht11.update();

  C = dht11.readCelsius();      // Reading the temperature in Celsius degrees and store in the C variable
  F = dht11.readFahrenheit();   // Reading the temperature in Fahrenheit degrees and store in the F variable
  H = dht11.readHumidity();     // Reading the humidity index

  // Print the collected data in a row on the Serial Monitor
  // Serial.print("H: ");
  // Serial.print(H);
  // Serial.print("\tC: ");
  // Serial.print(C);
  // Serial.print("\tF: ");
  // Serial.println(F);
  // delay(100);                // Wait one second before get another temperature reading 

  Serial.print(H);
  Serial.print(" ");
  Serial.print(C);
  Serial.print(" ");
  Serial.println(F);
  delay(100);
  ///


  if (sensorValue > sensorThres || C > 45 )

  {
  digitalWrite(10, HIGH);  // turn the LED on (HIGH is the voltage level)
  }
  else
  {
  digitalWrite(10, LOW);  // turn the LED off (LOW is the voltage level)
  }
  delay(1000);                // Wait one second before get another temperature reading
}

Last update: September 28, 2024