daily standup, bram documentation

This commit is contained in:
Bram Barbieri
2024-03-12 11:06:54 +01:00
parent fd260d9c56
commit 57a556ab6c
2 changed files with 12 additions and 2 deletions

View File

@@ -111,6 +111,7 @@ the code used looks like this:
DHT dht(DHTPIN, DHTTYPE); DHT dht(DHTPIN, DHTTYPE);
void setup() { void setup() {
//the
Serial.begin(9600); Serial.begin(9600);
Serial.println(F("DHTxx test!")); Serial.println(F("DHTxx test!"));
dht.begin(); dht.begin();
@@ -119,8 +120,8 @@ dht.begin();
void loop() { void loop() {
delay(2000); delay(2000);
float h = dht.readHumidity(); float h = dht.readHumidity();
float t = dht.readTemperature(); float t = dht.readTemperature();
float f = dht.readTemperature(true); float f = dht.readTemperature(true);
if (isnan(h) || isnan(t) || isnan(f)) { if (isnan(h) || isnan(t) || isnan(f)) {
@@ -131,6 +132,8 @@ void loop() {
} }
float hif = dht.computeHeatIndex(f, h); float hif = dht.computeHeatIndex(f, h);
float hic = dht.computeHeatIndex(t, h, false); float hic = dht.computeHeatIndex(t, h, false);
//all serial.ptint's send stuff to the serial board to showcase.
Serial.print(F("Humidity: ")); Serial.print(F("Humidity: "));
Serial.print(h); Serial.print(h);
Serial.print(F("% Temperature: ")); Serial.print(F("% Temperature: "));

View File

@@ -28,4 +28,11 @@ and im going to continue with working on the connection between the websocket an
Sam is going to finish the code for the big questionaire screen. 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. 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. Bram will do research on python to finish the connection to the database and the websocket.
}
12 - 3 - 2024 {
Sam is going to continue to build his custom library for out custom questionaire screen.
Sietse is going to make a class in python.
Dano is making classes for the code of the node.
Bram is correcting some of his documentation and will continue the coding in python( to still make the connection between the database and the websocket.)
} }