예제 #1
0
 public PinMap(PinName pin, I2CName peripheral, int function) :
     this(pin, (int)peripheral, function)
 {
 }
예제 #2
0
파일: I2C.cs 프로젝트: h7ga40/PeachCamWin
 public I2C(I2CName i2c, PinName sda, PinName scl)
 {
     this.i2c = i2c;
     this.sda = sda;
     this.scl = scl;
 }