| 1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.IO.Ports;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Threading;
- namespace FietsSimulator
- {
- class Program
- {
- static void Main(string[] args)
- {
- new FietsSimulator("COM6");
- while (true)
- {
- Thread.Sleep(10);
- }
- }
- }
- }
|