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