Added documentation infrastructure uml

This commit is contained in:
sam
2024-02-13 14:36:59 +01:00
parent 676c107b58
commit 4954e95549

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()
}
}
```