summaryrefslogtreecommitdiff
path: root/class_diagram.txt
diff options
context:
space:
mode:
Diffstat (limited to 'class_diagram.txt')
-rw-r--r--class_diagram.txt33
1 files changed, 33 insertions, 0 deletions
diff --git a/class_diagram.txt b/class_diagram.txt
new file mode 100644
index 0000000..84398ff
--- /dev/null
+++ b/class_diagram.txt
@@ -0,0 +1,33 @@
+@startuml
+class Wifi {
+ str essid
+ str pwd
+ str country
+ void wlan
+ wlan connection()
+}
+class TempSensor {
+ int read_retry
+ sensors sensors
+ void sensor_address
+ bool create_sensor()
+ int get_temperature()
+}
+class MqttClient {
+ str id
+ str server
+ int port
+ str user
+ str pwd
+ bool do_ssl
+ dict ssl_params
+ client mqtt_connect()
+ {static} void mqtt_reconnect()
+}
+class global {
+ .. global functions ..
+ ==
+ int mosfet_set(int)
+ int pid_value(float)
+}
+@enduml