Merge branch 'main' of gitlab.fdmci.hva.nl:propedeuse-hbo-ict/onderwijs/2023-2024/out-a-se-ti/blok-3/qaajeeqiinii59

This commit is contained in:
Dano van den Bosch
2024-02-13 12:31:43 +01:00
5 changed files with 63 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
# Raspberry pi
### Why can't we connect to our raspberry pi?
There could be several reasons why we can't connect to the raspberry pi.
* Our static ip address is being used by another pi.
* The switch connected to the pi is broken.
* The pi's internet port is broken.
### Trying to solve problems
We have been in the server room to diagnose what the problem might be. We have tried several things to solve the problem.
* We connected the Pi to another switch.
* We rebooted the Pi
* We have tried pinging outside from the Pi
### Conclusion.
We tried to troubleshoot the problem, but were unsuccessful even though the Pi was working before. We now have to wait for Mats until he can look into it.

View File

@@ -0,0 +1,17 @@
# Taskflow
```mermaid
flowchart
A[Goal: Finding a quiet study area] --> B(Walk over to the main node)
B --> C(Look at the screen to view where its the quietest)
C --> D(Walk over to that area)
D --> E(Start studying)
```
```mermaid
flowchart
A[Goal: leave a review to improve the study area] --> B(Walk over to the main node)
B --> C(Read the question)
C --> D(Press the button according to your answer)
D --> E(The review gets picked up by the building manager and \n they are going to improve the quality of the study area)
```

View File

@@ -0,0 +1,28 @@
# UML
## Infrastructure
``` mermaid
classDiagram
Node --> Raspberry pi : postData
namespace Server {
class Raspberry pi {
Database()
Webserver()
}
class Node {
+Co2
+Temperature
+Humidity
+Tfok
+Sound
collectData()
}
}
```