eDosStation/TestEPD3Dll/Program.cs
2021-05-19 16:38:54 +02:00

25 lines
508 B
C#

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();
}
}
}