public UltrasonicDistanceSensorTestBot(UltrasonicDistanceSensor sensor, Piezo piezo)
 {
     this.sensor = sensor;
     this.piezo = piezo;
 }
예제 #2
0
파일: VacuumBot.cs 프로젝트: ducas/Robbo
 public VacuumBot(MotorDriver driver, UltrasonicDistanceSensor front)
 {
     this.driver = driver;
     this.front = front;
 }
예제 #3
0
 public SafeDiscoveryBot(MotorDriver driver, UltrasonicDistanceSensor front, Accelerometer accelerometer)
 {
     this.driver = driver;
     this.front = front;
     this.accelerometer = accelerometer;
 }