You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
789 B
C#
19 lines
789 B
C#
namespace WorkerSynReport.Plc;
|
|
|
|
public class DB2111Helper : DBHelper
|
|
{
|
|
public DB2111Helper()
|
|
{
|
|
bytes = PlcConnect.Instance.Read("DB2111.0.0", 1682).Content;
|
|
}
|
|
|
|
public ReportDosEntity hwReport_A => new ReportDosEntity(bytes, 1506);
|
|
public ReportDosEntity hwReport_B => new ReportDosEntity(bytes, 1528);
|
|
public ReportDosEntity cwReport_A => new ReportDosEntity(bytes, 1550);
|
|
public ReportDosEntity cwReport_B => new ReportDosEntity(bytes, 1572);
|
|
|
|
public ReportDosEntity DryDosing_A => new ReportDosEntity(bytes, 1594);
|
|
public ReportDosEntity DryDosing_B => new ReportDosEntity(bytes, 1616);
|
|
public ReportDosEntity DryDosing_C => new ReportDosEntity(bytes, 1638);
|
|
public ReportDosEntity DryDosing_D => new ReportDosEntity(bytes, 1660);
|
|
} |