summaryrefslogtreecommitdiff
path: root/class_diagram.txt
diff options
context:
space:
mode:
authorErg <uinarf@autistici.org>2024-10-21 17:02:14 +0200
committerErg <uinarf@autistici.org>2024-10-21 17:02:14 +0200
commit1be9a52f11d7bb9cf519c6ee8027c9029824e29c (patch)
treea71b0edf5c4748000a8f5515dd215a9052ef927e /class_diagram.txt
downloadPico-1be9a52f11d7bb9cf519c6ee8027c9029824e29c.tar.gz
Pico-1be9a52f11d7bb9cf519c6ee8027c9029824e29c.tar.bz2
Pico-1be9a52f11d7bb9cf519c6ee8027c9029824e29c.zip
Comment change
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