Files
Proftaak-RH-B4/Client/Program.cs
Sem van der Hoeven 3e5f6e46c4 progress on validation
2020-09-30 16:22:57 +02:00

38 lines
705 B
C#

using System;
using Hardware;
using Hardware.Simulators;
using RH_Engine;
using System.Security.Cryptography;
using System.Text;
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();
BikeSimulator bikeSimulator = new BikeSimulator(client);
bikeSimulator.StartSimulation();
while (true)
{
}
}
}
}