Esempio n. 1
0
 public MotorDriverTestBot(MotorDriver driver)
 {
     this.driver = driver;
 }
Esempio n. 2
0
 public VacuumBot(MotorDriver driver, UltrasonicDistanceSensor front)
 {
     this.driver = driver;
     this.front = front;
 }
Esempio n. 3
0
 public SafeDiscoveryBot(MotorDriver driver, UltrasonicDistanceSensor front, Accelerometer accelerometer)
 {
     this.driver = driver;
     this.front = front;
     this.accelerometer = accelerometer;
 }