Bram docs, daily standups

This commit is contained in:
Bram Barbieri
2024-03-07 13:59:01 +01:00
parent a2219fa03a
commit c7ee23afd7
2 changed files with 15 additions and 5 deletions

View File

@@ -80,7 +80,6 @@ I did this by using one of the main sensors and tried programing it in myself.
I used this website for the information and for the right library:(https://randomnerdtutorials.com/esp32-dht11-dht22-temperature-humidity-sensor-arduino-ide/).
Aside from the website i used my teammates for help where it was needed.
I wanted to make my own spin on the original design by including a button to activate the sensor and an LED to show if its on.
At first I tried to use my own DHT11, but apparently it didn't work. So i used one from my Teammates.
The rest of the tutorial was clear and worked like a charm.
the code used looks like this:
```
@@ -92,7 +91,6 @@ the code used looks like this:
DHT dht(DHTPIN, DHTTYPE);
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
Serial.println(F("DHTxx test!"));
dht.begin();
@@ -101,7 +99,6 @@ dht.begin();
void loop() {
delay(2000);
float h = dht.readHumidity();
// Read temperature as Celsius (the default)
float t = dht.readTemperature();
float f = dht.readTemperature(true);
@@ -110,9 +107,7 @@ float f = dht.readTemperature(true);
return;
}
// Compute heat index in Fahrenheit (the default)
float hif = dht.computeHeatIndex(f, h);
// Compute heat index in Celsius (isFahreheit = false)
float hic = dht.computeHeatIndex(t, h, false);
Serial.print(F("Humidity: "));

View File

@@ -13,4 +13,19 @@
1 - 3 - 2024: {
From yesterday's standup, Sietse made a digital PCD schematic, Dano and Bram made great progress with connecting the PI to the html website and are trying to finish it today. Sam has made progress with documentation and was helping Sietse.
Today we are going to continue our tasks and try to finish these, so we can continue with our project.
}
5 - 3 - 2024: {
At the standup we discussed our goals for today, Sam is going to get the screen going, Sietse is gonna help Sam, Dano is working on kthe website, and Bram is going to send live info to the database in linux.
}
6 - 3 - 2024 {
Sietse is going to make a class wich contains all the graphs, Dano is making documentation and OOP, Sam is also making OOP,
and im going to continue with working on the connection between the websocket and the database. }
7 - 3 - 2024 {
Sietse is going to make more progress on updating the graph on the website.
Sam is going to finish the code for the big questionaire screen.
Dano is going to be writing some documentation and will be working with classes in arduino.
Bram will do research on python to finish the connection to the database and the websocket.
}