client and server connect

This commit is contained in:
shinichi
2020-09-23 14:31:37 +02:00
parent 8e45c9a435
commit d67c8448ad
5 changed files with 107 additions and 37 deletions

View File

@@ -1,6 +1,8 @@
using System;
using System.Collections.Generic;
using System.Text;
using Hardware;
using ProftaakRH;
namespace Client
{
@@ -13,6 +15,15 @@ namespace Client
Client client = new Client();
while (!client.IsConnected())
{
}
BLEHandler bLEHandler = new BLEHandler(client);
bLEHandler.Connect();
while (true)
{
}