using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TestEPD3Dll { class Program { static void Main(string[] args) { MK3.Epd2 x = new MK3.Epd2(4); x.Connect(false); var rv = x.SetTime(); rv = x.GetStatus(); x.ReadAlarmTresholds(); rv = x.GetDoses(); //x.SetDeIssued(); x.WriteCalibration(); } } }