Files
Proftaak-RH-B4/Client/Program.cs
2020-09-23 14:31:37 +02:00

33 lines
557 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using Hardware;
using ProftaakRH;
namespace Client
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
//connect fiets?
Client client = new Client();
while (!client.IsConnected())
{
}
BLEHandler bLEHandler = new BLEHandler(client);
bLEHandler.Connect();
while (true)
{
}
}
}
}