1

I am working through the 'Ultimate Starter Kit" for my Raspberry Pi 3+. In Chapter 16 the tutorial shows how to work with a stepper motor.

Note: The program works per the tutorial -

I just cannot understand how the following line is working:

GPIO.output(motorPins[i],((CCWStep[j] == 1<<i) and GPIO.HIGH or GPIO.LOW))

motorPins is a four-element array with a hex number in each element.

How is this line evaluated?

tlfong01
  • 4,847
  • 3
  • 12
  • 24
Goose23
  • 41
  • 4

1 Answers1

3

GPIO.output(motorPins[i],((CCWStep[j] == 1<<i) and GPIO.HIGH or GPIO.LOW))

GPIO.output is a function which takes two parameters.

The first motorPins[i] specifies the GPIO to act upon. In this case it is entry i in the array motorPins.

The second ((CCWStep[j] == 1<<i) and GPIO.HIGH or GPIO.LOW) specifies the level to assign to the GPIO.

If the expression evaluates to True the GPIO will be set high otherwise it will be set low.

I'm not going to try to work through that expression as it depends on CCWStep.

I would say it is (in my opinion) terrible code and a good example of code you should never write yourself.

joan
  • 71,852
  • 5
  • 76
  • 108