Property definitions

bcm2835 $ StepperMotor :: set
	protected fun set(a, b, c, d: Bool)
	do
		var bits = new Array[Bool].with_items(a, b, c, d)

		for i in [0..4[ do pins[i].write(bits[i])
	end
lib/bcm2835/bcm2835.nit:543,2--548,4