From 9f87a886da1d01f4f47ab2fe0ebfdd48f1162a13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Seidel?= Date: Fri, 1 Mar 2024 09:18:53 +0100 Subject: [PATCH] add class diagram to readme --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3dc3852..9ad5f84 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,13 @@ Classes for PlcOpen support classDiagram ExecuteCommand <|-- Command Command <|-- itfCommand - class itfCommand + class itfCommand{ + + Busy() BOOL + + Done() BOOL + + CommandAborted() BOOL + + Error() BOOL + + ErrorID() WORD + } ``` ### itfCommand