Inserito ciclo x verifica apertura 2 nuove tipologie di adapter (per ora empty...)

This commit is contained in:
Samuele E. Locatelli
2019-04-24 08:44:08 +02:00
parent 5f689768ee
commit 7ebeafa42c
4 changed files with 19 additions and 1 deletions
Binary file not shown.
+9 -1
View File
@@ -864,13 +864,21 @@ namespace IOB_UT
/// </summary>
SIEMENS,
/// <summary>
/// Adapter SIEMENS, interfaccia versione APROCHIM (filtro liquidi rettifiche)
/// </summary>
SIEMENS_APROCHIM,
/// <summary>
/// Adapter SIEMENS, interfaccia versione FAPE (punzonatrici)
/// </summary>
SIEMENS_FAPE,
/// <summary>
/// Adapter SIEMENS, interfaccia versione Torri
/// </summary>
SIEMENS_TORRI
SIEMENS_TORRI,
/// <summary>
/// Metodi di WebPageScraping (es x compressori Atlas Copco)
/// </summary>
WPS
}
public enum gatherCycle
+8
View File
@@ -616,6 +616,10 @@ namespace IOB_WIN
iobObj = new IobSiemens(this, IOBConf);
start.Enabled = true;
break;
case tipoAdapter.SIEMENS_APROCHIM:
iobObj = new IobSiemensAprochim(this, IOBConf);
start.Enabled = true;
break;
case tipoAdapter.SIEMENS_FAPE:
iobObj = new IobSiemensFape(this, IOBConf);
start.Enabled = true;
@@ -624,6 +628,10 @@ namespace IOB_WIN
iobObj = new IobSiemensTorri(this, IOBConf);
start.Enabled = true;
break;
case tipoAdapter.WPS:
iobObj = new IobWPS(this, IOBConf);
start.Enabled = true;
break;
case tipoAdapter.ND:
default:
iobObj = new IobSimula(this, IOBConf);
+2
View File
@@ -109,8 +109,10 @@
<Compile Include="..\VersGen\VersGen.cs">
<Link>VersGen.cs</Link>
</Compile>
<Compile Include="IobWPS.cs" />
<Compile Include="IobOSAI.cs" />
<Compile Include="IobKawasaki.cs" />
<Compile Include="IobSiemensAprochim.cs" />
<Compile Include="IobSiemensFape.cs" />
<Compile Include="specialConfig.cs" />
<Compile Include="IobConfiguration.cs" />