Set the output of this pin

Property definitions

bcm2835 $ Pin :: write
	# Set the output of this pin
	fun write(high: Bool) is abstract
lib/bcm2835/bcm2835.nit:34,2--35,34

bcm2835 $ RPiPin :: write
	# Set output
	redef fun write(high) `{ bcm2835_gpio_write(self, high? HIGH: LOW); `}
lib/bcm2835/bcm2835.nit:66,2--67,71