Esempio n. 1
0
 public static void Clear(this GpioPin pin)
 {
     pin.Write(PinValue.Low);
 }
Esempio n. 2
0
 public static void Set(this GpioPin pin)
 {
     pin.Write(PinValue.High);
 }