diff --git a/IOT/docs/diagram/class.puml b/IOT/docs/diagram/class.puml new file mode 100644 index 0000000..678c6f3 --- /dev/null +++ b/IOT/docs/diagram/class.puml @@ -0,0 +1,24 @@ +@startuml Class Diagram + + +Class API { + - user: String + - password: String + - serveurHost: String + - https: bool + - client: WiFiEspClient* + - connect(): bool + + API(user: String, password: String, host: String, https: bool = true) + + wifiBegin(wifiId: String, wifiPass: String, espSerial: Stream*): bool + + sendValue(val: String, pouvelleID: String, unit: String, full: bool): bool +} + +Class Program { + + Program () + + setup() +} + + + + +@enduml \ No newline at end of file