Example #1
0
 public PinMap(PinName pin, I2CName peripheral, int function) :
     this(pin, (int)peripheral, function)
 {
 }
Example #2
0
 public I2C(I2CName i2c, PinName sda, PinName scl)
 {
     this.i2c = i2c;
     this.sda = sda;
     this.scl = scl;
 }