CyrusBuilt.MonoPi.IO.GpioMem.Write C# (CSharp) 메소드

Write() 공개 정적인 메소드

Write the specified pin and value.
public static Write ( GpioPins pin, PinState value ) : void
pin GpioPins /// The pin to write to. ///
value PinState /// The value to write. ///
리턴 void
		public static void Write(GpioPins pin, PinState value) {
			String name = Enum.GetName(typeof(GpioPins), pin);
			internal_Write((Int32)pin, value, name);
		}

Same methods

GpioMem::Write ( PinState value ) : void