예제 #1
0
 public Form1()
 {
     this.InitializeComponent();
     this.comboBoxSound.DataSource = Enum.GetValues(typeof(Sounds));
     this.comboBoxLDSRotationFlag.DataSource = Enum.GetValues(typeof(LDSRotation));
     this.comboBoxSysMode.DataSource = Enum.GetValues(typeof(SystemMode));
     this.robot = new Neato();
     this.CheckIfConnected();
 }
예제 #2
0
파일: Sys.cs 프로젝트: heX16/NeatoCSharpAPI
 /// <summary>
 /// Initializes a new instance of the <see cref="Sys"/> class.
 /// </summary>
 /// <param name="parent">
 /// TODO: Add description.
 /// </param>
 public Sys(Neato parent)
 {
     this.neato = parent;
 }
예제 #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Test"/> class.
 /// </summary>
 /// <param name="parent">
 /// // TODO: Update parameter info.
 /// </param>
 public Test(Neato parent)
 {
     this.neato = parent;
 }
예제 #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Schedule"/> class. 
 /// </summary>
 /// <param name="parent">
 /// TODO: Add description.
 /// </param>
 public Schedule(Neato parent)
 {
     this.neato = parent;
 }
예제 #5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Movement"/> class.
 /// </summary>
 /// <param name="parent">
 /// Connection to the Neato to be moved. TODO:
 /// </param>
 public Movement(Neato parent)
 {
     this.neato = parent;
 }
예제 #6
0
파일: Sys.cs 프로젝트: heX16/NeatoCSharpAPI
 /// <summary>
 /// Initializes a new instance of the <see cref="Sys"/> class. 
 /// </summary>
 /// <param name="parent">
 /// TODO: Add description.
 /// </param>
 public Sys(Neato parent)
 {
     this.neato = parent;
 }
예제 #7
0
 public void TearDown()
 {
     this.Robot = null;
 }
예제 #8
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GetInfo"/> class.
 /// </summary>
 /// <param name="parent">
 /// Connection to the Neato to be moved. TODO:
 /// </param>
 public GetInfo(Neato parent)
 {
     this.neato = parent;
 }
예제 #9
0
 public void SetUp()
 {
     this.Robot = new Neato(new NeatoMockPort());
 }
예제 #10
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Movement"/> class.
 /// </summary>
 /// <param name="parent">
 /// Connection to the Neato to be moved. TODO:
 /// </param>
 public Movement(Neato parent)
 {
     this.neato = parent;
 }
예제 #11
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Schedule"/> class.
 /// </summary>
 /// <param name="parent">
 /// TODO: Add description.
 /// </param>
 public Schedule(Neato parent)
 {
     this.neato = parent;
 }
예제 #12
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GetInfo"/> class.
 /// </summary>
 /// <param name="parent">
 /// Connection to the Neato to be moved. TODO:
 /// </param>
 public GetInfo(Neato parent)
 {
     this.neato = parent;
 }
예제 #13
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Test"/> class.
 /// </summary>
 /// <param name="parent">
 /// // TODO: Update parameter info.
 /// </param>
 public Test(Neato parent)
 {
     this.neato = parent;
 }