eDosStation/TestEPD3Dll/Program.cs
2021-05-18 15:42:46 +02:00

27 lines
558 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)
{
DateTime start = new DateTime(1601, 1, 1);
DateTime rpdStart = new DateTime(1970, 1, 1);
TimeSpan ts = rpdStart - start;
double l = ts.TotalSeconds;
MK3.Epd2 x = new MK3.Epd2(4);
x.Connect(false);
var rv = x.GetStatus();
}
}
}