diff options
author | Erg <uinarf@autistici.org> | 2024-10-21 17:02:14 +0200 |
---|---|---|
committer | Erg <uinarf@autistici.org> | 2024-10-21 17:02:14 +0200 |
commit | 1be9a52f11d7bb9cf519c6ee8027c9029824e29c (patch) | |
tree | a71b0edf5c4748000a8f5515dd215a9052ef927e /class_diagram.txt | |
download | Pico-1be9a52f11d7bb9cf519c6ee8027c9029824e29c.tar.gz Pico-1be9a52f11d7bb9cf519c6ee8027c9029824e29c.tar.bz2 Pico-1be9a52f11d7bb9cf519c6ee8027c9029824e29c.zip |
Comment change
Diffstat (limited to 'class_diagram.txt')
-rw-r--r-- | class_diagram.txt | 33 |
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 |