+
MP-TAB2 @(DateTime.Today.Year) | v.@version
-
+
@($"{DateTime.Now:HH:mm:ss}") |
Egalware
diff --git a/MP-TAB-SERV/Components/IobInfoMan.razor b/MP-TAB-SERV/Components/IobInfoMan.razor
index 190064bc..f5a92a64 100644
--- a/MP-TAB-SERV/Components/IobInfoMan.razor
+++ b/MP-TAB-SERV/Components/IobInfoMan.razor
@@ -1,3 +1,34 @@
-@infosIob.IP
-@infosIob.iType
-@infosIob.name
\ No newline at end of file
+
+
+
+
+ -
+
Machine Code:
+ @idxMacch
+
+ -
+
IOB Type:
+ @infosIob.iType
+
+ -
+
IOB Name:
+ @infosIob.name
+
+ -
+
IOB Address:
+ @infosIob.IP
+
+ -
+
CNC Absolute counter:
+ @infosIob.CNC_Counter
+
+
+
+
\ No newline at end of file
diff --git a/MP.Data/Objects/IOB_data.cs b/MP.Data/Objects/IOB_data.cs
index 3c05c8bb..67b8d38c 100644
--- a/MP.Data/Objects/IOB_data.cs
+++ b/MP.Data/Objects/IOB_data.cs
@@ -15,7 +15,7 @@ namespace MP.Data.Objects
#region Public Fields
public bool CNC_Counter { get; set; }=false;
- public string IP { get; set; } ="";
+ public string IP { get; set; } ="::1";
public IobType iType { get; set; } = IobType.ND;
public string name { get; set; } ="ND";
public string typeCss { get; set; } = "fa fa-question-circle-o";