public static void Clear(this GpioPin pin) { pin.Write(PinValue.Low); }
public static void Set(this GpioPin pin) { pin.Write(PinValue.High); }