daily standup, bram documentation
This commit is contained in:
@@ -111,6 +111,7 @@ the code used looks like this:
|
||||
DHT dht(DHTPIN, DHTTYPE);
|
||||
|
||||
void setup() {
|
||||
//the
|
||||
Serial.begin(9600);
|
||||
Serial.println(F("DHTxx test!"));
|
||||
dht.begin();
|
||||
@@ -119,8 +120,8 @@ dht.begin();
|
||||
|
||||
|
||||
void loop() {
|
||||
delay(2000);
|
||||
float h = dht.readHumidity();
|
||||
delay(2000);
|
||||
float h = dht.readHumidity();
|
||||
float t = dht.readTemperature();
|
||||
float f = dht.readTemperature(true);
|
||||
if (isnan(h) || isnan(t) || isnan(f)) {
|
||||
@@ -131,6 +132,8 @@ void loop() {
|
||||
}
|
||||
float hif = dht.computeHeatIndex(f, h);
|
||||
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(h);
|
||||
Serial.print(F("% Temperature: "));
|
||||
|
@@ -29,3 +29,10 @@ and im going to continue with working on the connection between the websocket an
|
||||
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.
|
||||
}
|
||||
|
||||
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.)
|
||||
}
|
Reference in New Issue
Block a user