using System;
using System.Threading;
using MagnetPhysik;

namespace SensorApp
{
    class Program
    {
        static void Main(string[] args)
        {
            HallProbe hally = new HallProbe();

            for (int i = 0; i < 100; i++)
            {
                Console.WriteLine(hally.Tesla);
                Thread.Sleep(500);
            }
        }
    }
}