Program.cs 414 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO.Ports;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Threading;
  8. namespace FietsSimulator
  9. {
  10. class Program
  11. {
  12. static void Main(string[] args)
  13. {
  14. new FietsSimulator("COM6");
  15. while (true)
  16. {
  17. Thread.Sleep(10);
  18. }
  19. }
  20. }
  21. }