Add project files.

This commit is contained in:
2024-11-21 07:47:06 +07:00
parent f4a14908e1
commit c7f485ef1d
16 changed files with 3659 additions and 0 deletions

26
MappingData.cs Normal file
View File

@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FAtoPA
{
class MappingData
{
// key is SIID
public String? SIID { get; set; }
// if enable, will trigger with Modbus Register
public Boolean enableModbus { get; set; }
// if SIID active, link with which Modbus Register
public UInt16? ModbusRegister { get; set; }
// if SIID active, modify which bit from Modbus Register
public UInt16? ModbusBit { get; set; }
// if enable, will trigger with Virtual Contact
public Boolean enableVirtualContactInput { get; set; }
// if SIID active, Link with Virtual Contact Input from which Frame ID
public Byte? VXFrame { get; set; }
// if SIID active, trigger which Virtual Contact Input from Frame ID
public Byte? VXCin { get; set; }
}
}