示例#1
0
 public void TestThis(EMGReader test)
 {
     if (test == this)
     {
         Debug.Log("EMGReader: TestThis: True!");
     }
     else
     {
         Debug.Log("EMGReader: TestThis: False!");
     }
 }
示例#2
0
        //Main to test code
        public static void Main(string[] args)
        {
            EMGReader test = new EMGReader();

            Console.ReadLine();
            //test.calibrateBase();
            Console.WriteLine("Done");
            Console.ReadLine();
            // test.calibrateMax();
            Console.WriteLine("Done");
            Console.ReadLine();
            test.run();
        }