Added serial port support

- complete restructure of codebase
This commit is contained in:
Felix Weiß
2023-06-30 18:39:19 +02:00
parent c332cd9f86
commit 8c2ba1f68f
37 changed files with 1135 additions and 564 deletions

View File

@@ -0,0 +1,20 @@
using System.Text;
namespace MewtocolNet {
public enum PlcVarType {
BOOL,
INT,
UINT,
DINT,
UDINT,
REAL,
TIME,
STRING,
WORD,
DWORD
}
}