Beispiel #1
0
        public void EquipmentTest_Camera()
        {
            Camera c = new M8051("M8051");

            c.Execute(new Command("Open"));
            Thread.Sleep(3 * 1000);
            var result = c.Execute(new Command("Read", new Dictionary <string, string> {
                { "Type", "Raw" }
            }));

            result = c.Execute(new Command("Read", new Dictionary <string, string> {
                { "Type", "Bmp" }
            }));
            c.Execute(new Command("Close"));
        }
Beispiel #2
0
 public void StageIdle()
 {
     StageOwner o = new TestStageOwner("TestStation");
     Camera     c = new M8051("M8051");
 }