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

This commit is contained in:
Sietse Jonker
2024-02-13 14:39:46 +01:00
5 changed files with 58 additions and 3 deletions

View File

@@ -8,6 +8,7 @@ nav:
- Links: opdracht/links
- 📚 Documentatie:
- I2C: arduino-documentation/i2c-ESP32
- 🍓 Raspberry Pi: Sp1SchetsProject/InfrastructuurDocumentatie/raspberryPi
- 🧠 Brainstorm:
- Ideeën: brainstorm/ideeën
- Database design: brainstorm/Database

View File

@@ -0,0 +1,21 @@
#Rasberry Pi
##Table of contents
1. [Introduction](##introduction)
2. [Rasberry Pi](##Rasberry-Pi)
3. [Dev-Page](###Dev-Page)
4. [Database](##Database)
5. [Database software](###Database-software)
6. [Esp to database](###Esp-to-database)
##Introduction
##Rasberry Pi
###Dev Page
##Database
###Database software
###Esp to database

View File

@@ -5,14 +5,15 @@
``` mermaid
classDiagram
Node --> Raspberry pi : postData
Node --> Raspberry pi : Websocket
Raspberry pi --> Website : getData
Raspberry pi <--> EnqueteNode : Websocket
namespace Server {
class Raspberry pi {
Database()
Webserver()
Websocket()
}
class Node {
@@ -22,7 +23,39 @@ namespace Server {
+Tfok
+Sound
collectData()
}
}
namespace User {
class Website {
+Co2
+Temperature
+Humidity
+Tfok
+Sound
+Graph
+Map
+Settings
GetData()
}
class EnqueteNode {
+Co2
+Temperature
+Humidity
+Tfok
+Sound
+Graph
+Map
+QuestionResponse
EnqueteDisplay()
EnqueteButtons()
GetData()
}
}
```