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")); }
public void StageIdle() { StageOwner o = new TestStageOwner("TestStation"); Camera c = new M8051("M8051"); }