コード例 #1
0
ファイル: CarEventLoop.cs プロジェクト: iKenndac/RCCarControl
 public CarEventLoop(ICarHardwareInterface hardwareInterface)
 {
     _hardwareInterface = hardwareInterface;
 }
コード例 #2
0
ファイル: Servo.cs プロジェクト: iKenndac/RCCarControl
 internal Servo(ICarHardwareInterface hardwareInterface)
 {
     _hardwareInterface = hardwareInterface;
     _value = 0.0;
 }